This is an automated email from the ASF dual-hosted git repository.

msyavuz pushed a commit to branch msyavuz/fix/smart-format
in repository https://gitbox.apache.org/repos/asf/superset.git

commit f7ca733b6e50b340b7cf56833b04c0c7a353156c
Author: Mehmet Salih Yavuz <[email protected]>
AuthorDate: Mon Feb 16 19:51:52 2026 +0300

    fix: smart format
---
 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 65961e0889c..af3ff5d390d 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/utils/formatters.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/utils/formatters.ts
@@ -90,7 +90,7 @@ export function getXAxisFormatter(
   format?: string,
 ): TimeFormatter | StringConstructor | undefined {
   if (format === SMART_DATE_ID || !format) {
-    return undefined;
+    return getSmartDateFormatter();
   }
   if (format) {
     return getTimeFormatter(format);

Reply via email to