mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
Merge pull request #907 from BookStackApp/fix/date-image-manager
Changes the way the date is displayed in image-manager.
This commit is contained in:
commit
c2d6e98985
@ -13,3 +13,12 @@ export function utcTimeStampToLocalTime(timestamp) {
|
|||||||
let mins = date.getMinutes();
|
let mins = date.getMinutes();
|
||||||
return `${(hours>9?'':'0') + hours}:${(mins>9?'':'0') + mins}`;
|
return `${(hours>9?'':'0') + hours}:${(mins>9?'':'0') + mins}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function formatDateTime(date) {
|
||||||
|
let month = date.getMonth() + 1;
|
||||||
|
let day = date.getDate();
|
||||||
|
let hours = date.getHours();
|
||||||
|
let mins = date.getMinutes();
|
||||||
|
|
||||||
|
return `${date.getFullYear()}-${(month>9?'':'0') + month}-${(day>9?'':'0') + day} ${(hours>9?'':'0') + hours}:${(mins>9?'':'0') + mins}`;
|
||||||
|
}
|
@ -1,3 +1,6 @@
|
|||||||
|
|
||||||
|
import * as Dates from "../services/dates";
|
||||||
|
|
||||||
const dropzone = require('./components/dropzone');
|
const dropzone = require('./components/dropzone');
|
||||||
|
|
||||||
let page = 0;
|
let page = 0;
|
||||||
@ -168,7 +171,7 @@ const methods = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
getDate(stringDate) {
|
getDate(stringDate) {
|
||||||
return new Date(stringDate);
|
return Dates.formatDateTime(new Date(stringDate));
|
||||||
},
|
},
|
||||||
|
|
||||||
uploadSuccess(event) {
|
uploadSuccess(event) {
|
||||||
|
Loading…
Reference in New Issue
Block a user