File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed
src/components/Form/BooleanField Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -59,21 +59,13 @@ export const BooleanFieldRadio = ({
5959 < FieldGroup . Description description = { description } />
6060 < FieldGroup . Row >
6161 < RadioGroup . Item id = { `${ name } -true` } value = "true" />
62- < Label
63- aria-disabled = { disabled || readOnly }
64- className = "text-muted-foreground font-normal"
65- htmlFor = { `${ name } -true` }
66- >
62+ < Label aria-disabled = { disabled || readOnly } className = "text-muted-foreground" htmlFor = { `${ name } -true` } >
6763 { options ?. true ?? t ( 'form.radioLabels.true' ) }
6864 </ Label >
6965 </ FieldGroup . Row >
7066 < FieldGroup . Row >
7167 < RadioGroup . Item id = { `${ name } -false` } value = "false" />
72- < Label
73- aria-disabled = { disabled || readOnly }
74- className = "text-muted-foreground font-normal"
75- htmlFor = { `${ name } -false` }
76- >
68+ < Label aria-disabled = { disabled || readOnly } className = "text-muted-foreground" htmlFor = { `${ name } -false` } >
7769 { options ?. false ?? t ( 'form.radioLabels.false' ) }
7870 </ Label >
7971 </ FieldGroup . Row >
You can’t perform that action at this time.
0 commit comments