diff --git a/packages/grafana-ui/src/components/Table/FilterList.tsx b/packages/grafana-ui/src/components/Table/FilterList.tsx index 9a65476e6f4..1ea721809d5 100644 --- a/packages/grafana-ui/src/components/Table/FilterList.tsx +++ b/packages/grafana-ui/src/components/Table/FilterList.tsx @@ -4,7 +4,7 @@ import { FixedSizeList as List } from 'react-window'; import { GrafanaTheme2, formattedValueToString, getValueFormat, SelectableValue } from '@grafana/data'; -import { ButtonSelect, Checkbox, FilterInput, HorizontalGroup, Label, VerticalGroup } from '..'; +import { ButtonSelect, Checkbox, FilterInput, Label, Stack } from '..'; import { useStyles2, useTheme2 } from '../../themes'; interface Props { @@ -169,11 +169,11 @@ export const FilterList = ({ }, [onChange, values, items, selectedItems]); return ( - + {!showOperators && } {showOperators && ( - - + + - + )} {!items.length && } {items.length && ( @@ -206,7 +206,7 @@ export const FilterList = ({ )} {items.length && ( - +
- + )} - + ); };