chore: do not set default for required value in DatePickerWithValues

This commit is contained in:
kolaente 2025-05-13 21:16:57 +02:00
parent 6c85d12ee0
commit a50fa13d7e
1 changed files with 1 additions and 2 deletions

View File

@ -93,9 +93,8 @@ import {useFlatpickrLanguage} from '@/helpers/useFlatpickrLanguage'
const props = withDefaults(defineProps<{
modelValue: string | Date | null,
open: boolean
open?: boolean
}>(), {
modelValue: null,
open: false,
})