zhangj
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 <Radio prefixCls={prefixCls} {...radioProps} />; |
|
|
|
return <Radio prefixCls={prefixCls} {...radioProps} type="radio" />; |
|
|
|
}} |
|
|
|
</ConfigConsumer> |
|
|
|
); |
|
|
|