input datetime-local needs day to also be two digits
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
29c41865d0
commit
81f6522f88
|
@ -5,5 +5,6 @@
|
||||||
*/
|
*/
|
||||||
export function toISOUTCString(date) {
|
export function toISOUTCString(date) {
|
||||||
let month = (date.getMonth() + 1).toString().padStart(2, 0);
|
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()}`;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue