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

msyavuz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 3ef92e5610 fix(Alerts & reports): invalid "Last updated" time 
formatting (#33719)
3ef92e5610 is described below

commit 3ef92e56104c123bec22a47a0bbf08afef76dfb2
Author: Vladislav Korenkov <[email protected]>
AuthorDate: Tue Jun 10 03:52:47 2025 +1000

    fix(Alerts & reports): invalid "Last updated" time formatting (#33719)
---
 superset-frontend/src/utils/dates.ts | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/superset-frontend/src/utils/dates.ts 
b/superset-frontend/src/utils/dates.ts
index a1155dc1af..8124490fdb 100644
--- a/superset-frontend/src/utils/dates.ts
+++ b/superset-frontend/src/utils/dates.ts
@@ -25,6 +25,7 @@ import relativeTime from 'dayjs/plugin/relativeTime';
 import customParseFormat from 'dayjs/plugin/customParseFormat';
 import duration from 'dayjs/plugin/duration';
 import updateLocale from 'dayjs/plugin/updateLocale';
+import localizedFormat from 'dayjs/plugin/localizedFormat';
 import isSameOrBefore from 'dayjs/plugin/isSameOrBefore';
 
 dayjs.extend(utc);
@@ -34,6 +35,7 @@ dayjs.extend(relativeTime);
 dayjs.extend(customParseFormat);
 dayjs.extend(duration);
 dayjs.extend(updateLocale);
+dayjs.extend(localizedFormat);
 dayjs.extend(isSameOrBefore);
 
 dayjs.updateLocale('en', {

Reply via email to