We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0926fe6 commit a2bed6aCopy full SHA for a2bed6a
src/components/Form/BooleanField/BooleanFieldRadio.tsx
@@ -49,14 +49,16 @@ export const BooleanFieldRadio = ({
49
50
return (
51
<FieldGroup name={name}>
52
- <Label>{label}</Label>
+ <FieldGroup.Row>
53
+ <Label>{label}</Label>
54
+ <FieldGroup.Description description={description} />
55
+ </FieldGroup.Row>
56
<RadioGroup
57
disabled={disabled || readOnly}
58
name={name}
59
value={stringifyBoolean(value)}
60
onValueChange={handleValueChange}
61
>
- <FieldGroup.Description description={description} />
62
<FieldGroup.Row>
63
<RadioGroup.Item id={`${name}-true`} value="true" />
64
<Label aria-disabled={disabled || readOnly} className="text-muted-foreground" htmlFor={`${name}-true`}>
0 commit comments