From 621df692b335586c7f535fb25787cd45ec53eb5d Mon Sep 17 00:00:00 2001 From: zhangj Date: Tue, 3 Mar 2020 15:01:33 +0800 Subject: [PATCH] fix: Radio.Button type error (#21807) --- components/radio/radioButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/radio/radioButton.tsx b/components/radio/radioButton.tsx index 1a5a80c6d0..391d292b65 100644 --- a/components/radio/radioButton.tsx +++ b/components/radio/radioButton.tsx @@ -19,7 +19,7 @@ const RadioButton = (props: RadioButtonProps) => { radioProps.checked = props.value === radioGroupContext.value; radioProps.disabled = props.disabled || radioGroupContext.disabled; } - return ; + return ; }} );