Skip to content

Commit

Permalink
fix: radio editors name prop
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Aug 4, 2020
1 parent e6c608d commit ffbbe3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/editors/src/OptionsEditor/RadiosEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const RadiosEditor: PropertyEditor = ({ name }) => {
<input
type="radio"
id={id}
name={entry.label}
name={name}
value={entry.value}
onChange={e => onChange(e.target.value)}
checked={
Expand Down

0 comments on commit ffbbe3e

Please sign in to comment.