fix(range-slider): removed localization of metric key (#24716)
This commit is contained in:
parent
5f49e0fdd0
commit
2d58dddbdc
|
|
@ -20,7 +20,6 @@ import {
|
|||
buildQueryContext,
|
||||
GenericDataType,
|
||||
QueryFormData,
|
||||
t,
|
||||
} from '@superset-ui/core';
|
||||
|
||||
/**
|
||||
|
|
@ -55,7 +54,7 @@ export default function buildQuery(formData: QueryFormData) {
|
|||
},
|
||||
expressionType: 'SIMPLE',
|
||||
hasCustomLabel: true,
|
||||
label: t('min'),
|
||||
label: 'min',
|
||||
},
|
||||
{
|
||||
aggregate: 'MAX',
|
||||
|
|
@ -66,7 +65,7 @@ export default function buildQuery(formData: QueryFormData) {
|
|||
},
|
||||
expressionType: 'SIMPLE',
|
||||
hasCustomLabel: true,
|
||||
label: t('max'),
|
||||
label: 'max',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue