From 8a8e575100f63115f7f968cfbd6c5bc9371e77df Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Mon, 15 Mar 2021 14:48:55 +0100 Subject: [PATCH] Update 0BDFDB.plugin.js --- Library/0BDFDB.plugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/0BDFDB.plugin.js b/Library/0BDFDB.plugin.js index b56fab6a40..a244ec598d 100644 --- a/Library/0BDFDB.plugin.js +++ b/Library/0BDFDB.plugin.js @@ -5741,7 +5741,7 @@ module.exports = (_ => { return (strings.formatString || InternalComponents.LibraryComponents.DateInput.getDefaultString()) .replace(/\$date/g, date) .replace(/\$time12/g, strings.timeString && typeof strings.timeString == "string" ? InternalComponents.LibraryComponents.DateInput.formatTime(strings.timeString, timeObj, true) : timeObj.toLocaleTimeString(language, {hourCycle: "h12"})) - .replace(/\$time/g, strings.timeString && typeof strings.timeString == "string" ? InternalComponents.LibraryComponents.DateInput.formatTime(strings.timeString, timeObj) : timeObj.toLocaleTimeString(language)) + .replace(/\$time/g, strings.timeString && typeof strings.timeString == "string" ? InternalComponents.LibraryComponents.DateInput.formatTime(strings.timeString, timeObj) : timeObj.toLocaleTimeString(language, {hourCycle: "h24"})) .replace(/\$monthS/g, timeObj.toLocaleDateString(language, {month: "short"})) .replace(/\$month/g, timeObj.toLocaleDateString(language, {month: "long"})) .replace(/\$dayS/g, timeObj.toLocaleDateString(language, {weekday: "short"})) @@ -8334,4 +8334,4 @@ module.exports = (_ => { }); } } -})(); \ No newline at end of file +})();