This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch fix-histogrtam-quotes
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/fix-histogrtam-quotes by this
push:
new 05beb7cc4a fix(histogram): remove extra single quotes
05beb7cc4a is described below
commit 05beb7cc4a5080f38a11fc377a5db7c910850919
Author: Evan Rusackas <[email protected]>
AuthorDate: Fri Apr 25 10:50:52 2025 -0600
fix(histogram): remove extra single quotes
---
.../plugins/plugin-chart-echarts/src/Histogram/transformProps.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/transformProps.ts
b/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/transformProps.ts
index 388e79ae94..28d2a93e6d 100644
---
a/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/transformProps.ts
+++
b/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/transformProps.ts
@@ -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 =