This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 5.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 454397fc172b319d46a3f9f348ce26df03c1041c Author: JUST.in DO IT <[email protected]> AuthorDate: Tue Apr 15 18:51:53 2025 -0700 fix(echart): Tooltip date format doesn't follow time grain (#33138) (cherry picked from commit 7333ffd41e04f3da145d1b103d03427f00b4d83c) --- superset-frontend/plugins/plugin-chart-echarts/src/utils/formatters.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/utils/formatters.ts b/superset-frontend/plugins/plugin-chart-echarts/src/utils/formatters.ts index 8d93783c8a..65961e0889 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/utils/formatters.ts +++ b/superset-frontend/plugins/plugin-chart-echarts/src/utils/formatters.ts @@ -78,7 +78,7 @@ export function getTooltipTimeFormatter( format?: string, ): TimeFormatter | StringConstructor { if (format === SMART_DATE_ID) { - return getSmartDateDetailedFormatter(); + return getSmartDateVerboseFormatter(); } if (format) { return getTimeFormatter(format);
