diff --git a/packages/nc-gui/components/cell/DateTimePicker.vue b/packages/nc-gui/components/cell/DateTimePicker.vue index 33d99c5c8f..65aa943174 100644 --- a/packages/nc-gui/components/cell/DateTimePicker.vue +++ b/packages/nc-gui/components/cell/DateTimePicker.vue @@ -3,7 +3,7 @@ import dayjs from 'dayjs' import { ReadonlyInj, inject, ref, useProject, watch } from '#imports' interface Props { - modelValue: string | null | undefined + modelValue?: string | null } const { modelValue } = defineProps()