mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 13:20:43 +00:00
Add export to ColumnStats; fix formatDateTimeForFileName
This commit is contained in:
@ -278,7 +278,7 @@ class ValueUtils
|
||||
const zp = (value: number): string => (value < 10 ? `0${value}` : `${value}`);
|
||||
const d = new Date();
|
||||
const dateString = `${d.getFullYear()}-${zp(d.getMonth() + 1)}-${zp(d.getDate())} ${zp(d.getHours())}${zp(d.getMinutes())}`;
|
||||
return (date);
|
||||
return (dateString);
|
||||
}
|
||||
|
||||
public static getFullWeekday(date: Date)
|
||||
|
Reference in New Issue
Block a user