mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-21 12:55:22 +00:00
Fix issue #940
Fix for issue 940 - time was incorrectly displayed in a 12-hour fashion regardless of the 24 hour clock preference in config.js
This commit is contained in:
@@ -81,7 +81,7 @@ Module.register("calendar", {
|
|||||||
case 24: {
|
case 24: {
|
||||||
moment.updateLocale(config.language, {
|
moment.updateLocale(config.language, {
|
||||||
longDateFormat: {
|
longDateFormat: {
|
||||||
LT: "hh:mm"
|
LT: "HH:mm"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user