diff --git a/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx b/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx index 8e12685fa59..8d045fa1a6c 100644 --- a/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx +++ b/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx @@ -49,7 +49,7 @@ export function RadioButtonGroup({ disabled, disabledOptions, size = 'md', - fullWidth, + fullWidth = false, }: RadioButtonGroupProps) { const handleOnChange = useCallback( (option: SelectableValue) => { @@ -78,7 +78,7 @@ export function RadioButtonGroup({ onChange={handleOnChange(o)} id={`option-${o.value}-${id}`} name={groupName.current} - fullWidth + fullWidth={fullWidth} > {o.label}