diff --git a/frontend/libs/console/legacy-ce/src/lib/components/Common/utils/jsUtils.tsx b/frontend/libs/console/legacy-ce/src/lib/components/Common/utils/jsUtils.tsx index a3f74bad503..64d6917aa6d 100644 --- a/frontend/libs/console/legacy-ce/src/lib/components/Common/utils/jsUtils.tsx +++ b/frontend/libs/console/legacy-ce/src/lib/components/Common/utils/jsUtils.tsx @@ -362,7 +362,9 @@ export const getCurrTimeForFileName = () => { }; export const convertDateTimeToLocale = (dateTime: string | Date | number) => { - return moment(dateTime, moment.ISO_8601).format('ddd, MMM Do HH:mm:ss Z'); + return moment(dateTime, moment.ISO_8601).format( + 'ddd, MMM, yyyy, Do HH:mm:ss Z' + ); }; export const isConsoleError = (x: any): x is Error => {