Skip to content

Commit

Permalink
fix(range-slider): removed localization of metric key (#24716)
Browse files Browse the repository at this point in the history
  • Loading branch information
Always-prog authored Jul 19, 2023
1 parent 5f49e0f commit 2d58ddd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions superset-frontend/src/filters/components/Range/buildQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {
buildQueryContext,
GenericDataType,
QueryFormData,
t,
} from '@superset-ui/core';

/**
Expand Down Expand Up @@ -55,7 +54,7 @@ export default function buildQuery(formData: QueryFormData) {
},
expressionType: 'SIMPLE',
hasCustomLabel: true,
label: t('min'),
label: 'min',
},
{
aggregate: 'MAX',
Expand All @@ -66,7 +65,7 @@ export default function buildQuery(formData: QueryFormData) {
},
expressionType: 'SIMPLE',
hasCustomLabel: true,
label: t('max'),
label: 'max',
},
],
},
Expand Down

0 comments on commit 2d58ddd

Please sign in to comment.