mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
fix(histogram): remove extra single quotes (#33248)
(cherry picked from commit d2360b533b)
This commit is contained in:
committed by
Michael S. Molina
parent
f8b0632f99
commit
850f35add1
@@ -84,7 +84,7 @@ export default function transformProps(
|
||||
.filter(key => !groupbySet.has(key))
|
||||
.map(key => {
|
||||
const array = key.split(' - ').map(value => parseFloat(value));
|
||||
return `${xAxisFormatter(array[0])} '-' ${xAxisFormatter(array[1])}`;
|
||||
return `${xAxisFormatter(array[0])} - ${xAxisFormatter(array[1])}`;
|
||||
});
|
||||
const barSeries: BarSeriesOption[] = data.map(datum => {
|
||||
const seriesName =
|
||||
|
||||
Reference in New Issue
Block a user