diff options
author | Christian Schmidt <github@chsc.dk> | 2023-04-07 16:19:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-07 16:19:43 +0200 |
commit | aa136cf2fa177af1fea59279cb8bab0b2a042b2b (patch) | |
tree | 0eff5d540173546267aaf2b5431cc71565f868b4 | |
parent | 9ef9974ff207fe91291c81c7a9b9bb83e0df8e16 (diff) |
Fix tooltip for dates without time (#24244)
-rw-r--r-- | app/javascript/packs/public.jsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/javascript/packs/public.jsx b/app/javascript/packs/public.jsx index 3db6c5c6a..2642aae13 100644 --- a/app/javascript/packs/public.jsx +++ b/app/javascript/packs/public.jsx @@ -117,11 +117,12 @@ function main() { const datetime = new Date(content.getAttribute('datetime')); const now = new Date(); - content.title = dateTimeFormat.format(datetime); + const timeGiven = content.getAttribute('datetime').includes('T'); + content.title = timeGiven ? dateTimeFormat.format(datetime) : dateFormat.format(datetime); 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(), content.getAttribute('datetime').includes('T')); + }, datetime, now, now.getFullYear(), timeGiven); }); const reactComponents = document.querySelectorAll('[data-component]'); |