From b2ca7f50adbb0836be65e298bf1f1cd845dc2c91 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Tue, 17 Jan 2023 15:48:48 +0100 Subject: [PATCH] Resolve timeStyle issue found in Safari 13.1.2 --- dev/prototype.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/prototype.js b/dev/prototype.js index bc670a2fa..78f5c57a1 100644 --- a/dev/prototype.js +++ b/dev/prototype.js @@ -10,7 +10,8 @@ // medium = Dec 12, 2022, 12:16:21 PM // short = 12/12/22, 12:16 PM let formats = { - LT : {timeStyle: 'short'}, +// LT : {timeStyle: 'short'}, // Issue in Safari + LT : {hour: 'numeric', minute: 'numeric'}, LLL : {dateStyle: 'long', timeStyle: 'short'} };