From 572fed9f35d2197fa9f9a2ddad5f7aa330032bc4 Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Fri, 16 Sep 2022 12:59:30 +0300 Subject: [PATCH] Pull request: 4679 fix wrong time format after midnight Updates #4679 Squashed commit of the following: commit 1864f33120fc35e6d88fb5d448e1391f97c267ef Merge: b48add05 663f0643 Author: Ildar Kamalov Date: Fri Sep 16 12:43:58 2022 +0300 Merge branch 'master' into 4679-time-format commit b48add059ff330f1a709b6fd723cbf92ce89c60e Author: Ildar Kamalov Date: Fri Sep 16 12:39:52 2022 +0300 client: fix wrong time format after midnight --- client/src/helpers/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/helpers/constants.js b/client/src/helpers/constants.js index 935e3655..943b28ac 100644 --- a/client/src/helpers/constants.js +++ b/client/src/helpers/constants.js @@ -526,8 +526,8 @@ export const DEFAULT_DATE_FORMAT_OPTIONS = { month: 'numeric', day: 'numeric', hour: 'numeric', + hourCycle: 'h23', minute: 'numeric', - hour12: false, }; export const DETAILED_DATE_FORMAT_OPTIONS = {