chore(explore): Change labels "Group by"/"Series" to "Dimensions" (#19647)

This commit is contained in:
Kamil Gabryjelski 2022-04-13 15:16:03 +02:00 committed by GitHub
parent 2ba484fe43
commit de9fb2109d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 9 deletions

View File

@ -28,7 +28,7 @@ import { TIME_COLUMN_OPTION, TIME_FILTER_LABELS } from '../constants';
export const dndGroupByControl: SharedControlConfig<'DndColumnSelect'> = {
type: 'DndColumnSelect',
label: t('Group by'),
label: t('Dimensions'),
default: [],
description: t(
'One or many columns to group by. High cardinality groupings should include a series limit ' +
@ -58,7 +58,7 @@ export const dndColumnsControl: typeof dndGroupByControl = {
export const dndSeries: typeof dndGroupByControl = {
...dndGroupByControl,
label: t('Series'),
label: t('Dimensions'),
multi: false,
default: null,
description: t(

View File

@ -103,7 +103,7 @@ type SelectDefaultOption = {
const groupByControl: SharedControlConfig<'SelectControl', ColumnMeta> = {
type: 'SelectControl',
label: t('Group by'),
label: t('Dimensions'),
multi: true,
freeForm: true,
clearable: true,
@ -403,7 +403,7 @@ const sort_by: SharedControlConfig<'MetricsControl'> = {
const series: typeof groupByControl = {
...groupByControl,
label: t('Series'),
label: t('Dimensions'),
multi: false,
default: null,
description: t(

View File

@ -106,7 +106,7 @@ const config: ControlPanelConfig = {
],
controlOverrides: {
groupby: {
label: t('Series'),
label: t('Dimensions'),
validators: [validateNonEmpty],
mapStateToProps: (state, controlState) => {
const groupbyProps =

View File

@ -125,7 +125,7 @@ const config: ControlPanelConfig = {
],
controlOverrides: {
groupby: {
label: t('Series'),
label: t('Dimensions'),
description: t('Categories to group by on the x-axis.'),
},
columns: {

View File

@ -39,7 +39,7 @@ const config: ControlPanelConfig = {
name: 'groupby',
config: {
...sharedControls.groupby,
label: t('Group by'),
label: t('Dimensions'),
description: t('Columns to group by'),
},
},

View File

@ -120,7 +120,7 @@ const groupByControl = {
type: 'SelectControl',
multi: true,
freeForm: true,
label: t('Group by'),
label: t('Dimensions'),
default: [],
includeTime: false,
description: t(
@ -393,7 +393,7 @@ export const controls = {
series: {
...groupByControl,
label: t('Series'),
label: t('Dimensions'),
multi: false,
default: null,
description: t(