-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Description
Currently we aren't enforcing any set of standard for our .toLocaleString(), within #21252 we chose to update things to the following.
const customisedDateLocale: Intl.DateTimeFormatOptions = {
// Hide the year from the date
year: undefined,
// Show the month as a short name
month: "short",
day: "numeric",
hour: "2-digit",
minute: "2-digit",
second: "2-digit",
hour12: true,
};It would be good to standardise all instances of this to render the same newer way.
Metadata
Metadata
Assignees
Labels
No labels