diff --git a/frontend/src/component/impact-metrics/ChartConfigModal/LabelFilter/LabelFilterItem/LabelFilterItem.tsx b/frontend/src/component/impact-metrics/ChartConfigModal/LabelFilter/LabelFilterItem/LabelFilterItem.tsx index e49529bfe4..1fcbe7269a 100644 --- a/frontend/src/component/impact-metrics/ChartConfigModal/LabelFilter/LabelFilterItem/LabelFilterItem.tsx +++ b/frontend/src/component/impact-metrics/ChartConfigModal/LabelFilter/LabelFilterItem/LabelFilterItem.tsx @@ -37,7 +37,7 @@ export const LabelFilterItem: FC = ({ options={optionsWithSelectAll} value={isAllSelected ? options : value} getOptionLabel={(option) => - option === SELECT_ALL ? 'Select all' : option + option === SELECT_ALL ? '(Select all)' : option } onChange={(_, newValues, reason, details) => { if (details?.option === SELECT_ALL) { @@ -55,7 +55,16 @@ export const LabelFilterItem: FC = ({ } style={{ marginRight: 8 }} /> - {option === SELECT_ALL ? 'Select all' : option} + {option === SELECT_ALL ? ( + + Select all + + ) : ( + option + )} )} renderTags={(value, getTagProps) => {