input datetime-local needs day to also be two digits
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Lukáš Kucharczyk 2023-03-02 17:26:44 +01:00
parent 29c41865d0
commit 81f6522f88

View File

@ -5,5 +5,6 @@
*/
export function toISOUTCString(date) {
let month = (date.getMonth() + 1).toString().padStart(2, 0);
return `${date.getFullYear()}-${month}-${date.getDate()}T${date.getHours()}:${date.getMinutes()}`;
let day = date.getDate().padStart(2, 0);
return `${date.getFullYear()}-${month}-${day}T${date.getHours()}:${date.getMinutes()}`;
}