actually fix date input demo bad bind:value

This commit is contained in:
Elijah Duffy
2025-12-15 15:24:19 -08:00
parent 1c4fac7523
commit 63b29e3f6a

View File

@@ -57,7 +57,7 @@
{ value: 'option3', label: 'Option 3', disabled: true }
];
let lazyOptions: ComboboxOption[] = $state([]);
let dateInputValue = $state<CalendarDate | undefined>(undefined);
let dateInputValue = $state<CalendarDate | null>(null);
let checkboxValue = $state<CheckboxState>('indeterminate');
let dialogOpen = $state(false);
let scrollableDialogOpen = $state(false);