fix: 🩹 YYYYMMDD with dashes

This commit is contained in:
ThatOneCalculator 2023-06-13 17:16:10 -07:00
parent 8f7eedc784
commit 6de344c7a3

View file

@ -290,7 +290,7 @@ function formatDateToYYYYMMDD(date) {
const year = date.getFullYear(); const year = date.getFullYear();
const month = ("0" + (date.getMonth() + 1)).slice(-2); const month = ("0" + (date.getMonth() + 1)).slice(-2);
const day = ("0" + date.getDate()).slice(-2); const day = ("0" + date.getDate()).slice(-2);
return `${year}${month}${day}`; return `${year}-${month}-${day}`;
} }
async function openSearchFilters(ev) { async function openSearchFilters(ev) {