From 1e7047873e0e167aebc4b48c4521e1524257ed28 Mon Sep 17 00:00:00 2001 From: Wayne Witzel III Date: Thu, 22 Jul 2021 11:52:36 -0400 Subject: [PATCH] fix client js local/locale call --- client/app/lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/lib/utils.js b/client/app/lib/utils.js index 51b15fda71..17cf257eef 100644 --- a/client/app/lib/utils.js +++ b/client/app/lib/utils.js @@ -51,7 +51,7 @@ export function localizeTime(time) { .utc() .hour(hrs) .minute(mins) - .local() + .locale() .format("HH:mm"); }