From df824bee1bec1578884831d4a466ccd053ef1c1c Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Fri, 3 Jan 2025 15:43:18 +0530 Subject: [PATCH] fix: corrected the tooltip format --- frontend/src/utils/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/utils/index.js b/frontend/src/utils/index.js index 899b2607..3e206799 100644 --- a/frontend/src/utils/index.js +++ b/frontend/src/utils/index.js @@ -58,7 +58,7 @@ export function getFormat( .replace('yyyy', 'YYYY') .replace('dd', 'DD') || 'YYYY-MM-DD' let timeFormat = window.sysdefaults.time_format || 'HH:mm:ss' - format = format || 'ddd, MMM d, YYYY h:mm a' + format = format || 'ddd, MMM D, YYYY h:mm a' if (onlyDate) format = dateFormat if (onlyTime) format = timeFormat