fix: 🩹 YYYYMMDD with dashes
This commit is contained in:
parent
beb96f7cff
commit
8151da6b6a
|
@ -290,7 +290,7 @@ function formatDateToYYYYMMDD(date) {
|
|||
const year = date.getFullYear();
|
||||
const month = ("0" + (date.getMonth() + 1)).slice(-2);
|
||||
const day = ("0" + date.getDate()).slice(-2);
|
||||
return `${year}${month}${day}`;
|
||||
return `${year}-${month}-${day}`;
|
||||
}
|
||||
|
||||
async function openSearchFilters(ev) {
|
||||
|
|
Loading…
Reference in New Issue