LOA-Datepicker-fix #115

Merged
Ajdj100 merged 5 commits from LOA-Datepicker-fix into main 2025-12-17 09:17:57 -06:00
Showing only changes of commit 1cf6b35021 - Show all commits

View File

@@ -121,7 +121,7 @@ const minEndDate = computed(() => {
if (values.start_date) {
return new CalendarDate(values.start_date.getFullYear(), values.start_date.getMonth() + 1, values.start_date.getDate())
} else {
return null;
return today(getLocalTimeZone());
}
})
@@ -141,7 +141,7 @@ const minStartDate = computed(() => {
let start = new CalendarDate(endDateObj.getFullYear(), endDateObj.getMonth() + 1, endDateObj.getDate())
return td.compare(start) > 0 ? td : start;
} else {
return null;
return today(getLocalTimeZone());
}
})