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
7931d9dc83
|
@ -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().toString().padStart(2, 0);
|
||||
return `${date.getFullYear()}-${month}-${day}T${date.getHours()}:${date.getMinutes()}`;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue