Skip to content

Commit d2360b5

Browse files
authored
fix(histogram): remove extra single quotes (#33248)
1 parent de84a53 commit d2360b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

superset-frontend/plugins/plugin-chart-echarts/src/Histogram/transformProps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default function transformProps(
8484
.filter(key => !groupbySet.has(key))
8585
.map(key => {
8686
const array = key.split(' - ').map(value => parseFloat(value));
87-
return `${xAxisFormatter(array[0])} '-' ${xAxisFormatter(array[1])}`;
87+
return `${xAxisFormatter(array[0])} - ${xAxisFormatter(array[1])}`;
8888
});
8989
const barSeries: BarSeriesOption[] = data.map(datum => {
9090
const seriesName =

0 commit comments

Comments
 (0)