This is an automated email from the ASF dual-hosted git repository. diegopucci pushed a commit to branch fix/comma-separator-number-format in repository https://gitbox.apache.org/repos/asf/superset.git
commit 1aaf609e1d934fc111fe14a405ed6800023dfbee Author: geido <[email protected]> AuthorDate: Fri Oct 14 17:00:55 2022 +0300 Remove comma from token separators --- superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx index 5468a3a94c..1b73b95e7e 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx +++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx @@ -125,6 +125,7 @@ const config: ControlPanelConfig = { description: `${t( 'D3 format syntax: https://github.com/d3/d3-format', )} ${t('Only applies when "Label Type" is set to show values.')}`, + tokenSeparators: ['\n', '\t', ';'], }, }, ],
