From 2ee9cd324b6fc58deff34ac1455f612804f0c706 Mon Sep 17 00:00:00 2001 From: tangjinzhou <415800467@qq.com> Date: Tue, 28 Dec 2021 16:45:48 +0800 Subject: [PATCH] fix: radio type --- components/radio/Group.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/radio/Group.tsx b/components/radio/Group.tsx index ea78a984e..968c98713 100644 --- a/components/radio/Group.tsx +++ b/components/radio/Group.tsx @@ -17,7 +17,7 @@ const RadioGroupOptionTypes = tuple('default', 'button'); export type RadioGroupOption = typeof RadioGroupOptionTypes[number]; export type RadioGroupChildOption = { - label: any; + label?: any; value: any; disabled?: boolean; };