From 0e1ef49bc255e31dc9846616433959904c42aa91 Mon Sep 17 00:00:00 2001 From: ThibG Date: Mon, 3 Feb 2020 17:48:56 +0100 Subject: Fix dates (without time) being rendered as datetimes in public pages (#13034) --- app/javascript/packs/public.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/javascript') diff --git a/app/javascript/packs/public.js b/app/javascript/packs/public.js index 76b7e408e..9d49a2002 100644 --- a/app/javascript/packs/public.js +++ b/app/javascript/packs/public.js @@ -75,7 +75,7 @@ function main() { content.textContent = timeAgoString({ formatMessage: ({ id, defaultMessage }, values) => (new IntlMessageFormat(messages[id] || defaultMessage, locale)).format(values), formatDate: (date, options) => (new Intl.DateTimeFormat(locale, options)).format(date), - }, datetime, now, now.getFullYear()); + }, datetime, now, now.getFullYear(), content.getAttribute('datetime').includes('T')); }); const reactComponents = document.querySelectorAll('[data-component]'); -- cgit