-
Notifications
You must be signed in to change notification settings - Fork 227
Closed
Description
I have.:
<Field
label="Android"
value={1}
name="operational_system_id"
type="radio"
component={Radio}
format={null}
/>
Radio is:
import { Radio as SnRadio } from 'supernova-inloco'
const Radio = ({ input, label }) => {
return (
<SnRadio
{...input}
label={label}
/>
)
}
export default Radio
This cause a problem that when I click in the radio option it always come with checked equal to false because the value in radio is 1(number) and in the store is "1" (string).
Metadata
Metadata
Assignees
Labels
No labels