1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 22:59:28 +00:00

Fix locale in handlebars formatTime helper

This commit is contained in:
2022-04-18 19:12:52 +00:00
parent 0b4be056c6
commit facb9ba124

View File

@@ -24,9 +24,9 @@ helpers.formatTime = function (date) {
}; };
return ( return (
date.toLocaleDateString('en', dateOptions) + date.toLocaleDateString('en-GB', dateOptions) +
' ' + ' ' +
date.toLocaleTimeString('en', timeOptions) date.toLocaleTimeString('en-GB', timeOptions)
); );
}; };