mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Use 24h format instead of 12h format
Use correct time format in WebUI
This commit is contained in:
parent
ce5d2ab7db
commit
946a7c3a83
1 changed files with 1 additions and 1 deletions
|
|
@ -1338,7 +1338,7 @@ OC.Util = {
|
|||
* @returns {string} timestamp formatted as requested
|
||||
*/
|
||||
formatDate: function (timestamp, format) {
|
||||
format = format || "MMMM D, YYYY h:mm";
|
||||
format = format || "MMMM D, YYYY H:mm";
|
||||
return moment(timestamp).format(format);
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue