fix(range-slider): removed localization of metric key (#24716)

This commit is contained in:
Stepan 2023-07-19 22:48:50 +03:00 committed by GitHub
parent 5f49e0fdd0
commit 2d58dddbdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -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',
},
],
},