diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/components/Echart.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/components/Echart.tsx index 43fc7bf2bb0..bb2c1d643f1 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/components/Echart.tsx +++ b/superset-frontend/plugins/plugin-chart-echarts/src/components/Echart.tsx @@ -124,7 +124,7 @@ use([ const loadLocale = async (locale: string) => { let lang; try { - lang = await import(`echarts/lib/i18n/lang${locale}`); + lang = await import(`echarts/i18n/lang${locale}.js`); } catch { // Locale not supported in ECharts }