From d2ee4d1005fa9805e12c641005acf76c8ec94188 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Thu, 29 Aug 2024 15:16:04 +0100 Subject: [PATCH] RadioButtonGroup: Ensure background colour displays properly (#92665) add background colour to RadioButtonGroup --- .../src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx b/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx index 1fc51fb350c..aa3e83c34a0 100644 --- a/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx +++ b/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx @@ -113,6 +113,7 @@ RadioButtonGroup.displayName = 'RadioButtonGroup'; const getStyles = (theme: GrafanaTheme2) => { return { radioGroup: css({ + backgroundColor: theme.colors.background.primary, display: 'inline-flex', flexDirection: 'row', flexWrap: 'nowrap',