From d0a1423daf377cb08b50da2120f964502168ba2b Mon Sep 17 00:00:00 2001 From: ThibG Date: Mon, 3 Feb 2020 17:48:56 +0100 Subject: [PATCH] [Glitch] Fix dates (without time) being rendered as datetimes in public pages Port f7deab10a5fac09928ed208690cc6358dc0d67b6 to glitch-soc Signed-off-by: Thibaut Girka --- app/javascript/flavours/glitch/packs/public.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/packs/public.js b/app/javascript/flavours/glitch/packs/public.js index d1adfb17af..d8a97704f4 100644 --- a/app/javascript/flavours/glitch/packs/public.js +++ b/app/javascript/flavours/glitch/packs/public.js @@ -62,7 +62,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]');