Skip to content

Commit

Permalink
Merge pull request #23374 from srapilly/group-radio-by-name
Browse files Browse the repository at this point in the history
UI: Same html name for related Radio
  • Loading branch information
JReinhold authored May 15, 2024
2 parents 42a1f32 + aea3797 commit 9c93c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/ui/blocks/src/controls/options/Radio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const RadioControl: FC<RadioProps> = ({
<input
type="radio"
id={id}
name={id}
name={controlId}
disabled={readonly}
value={key}
onChange={(e) => onChange(options[e.currentTarget.value])}
Expand Down

0 comments on commit 9c93c4c

Please sign in to comment.