mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-25 19:37:34 -07:00
fix: 🩹 day isn't decreased by 1
This commit is contained in:
parent
39708a0a1d
commit
76a81d1451
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ function onInputKeydown(evt: KeyboardEvent) {
|
|||
function formatDateToYYYYMMDD(date) {
|
||||
const year = date.getFullYear();
|
||||
const month = ("0" + (date.getMonth() + 1)).slice(-2);
|
||||
const day = ("0" + date.getDate()).slice(-2);
|
||||
const day = ("0" + (date.getDate() + 1)).slice(-2);
|
||||
return `${year}-${month}-${day}`;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue