Add typecheck

This commit is contained in:
2025-08-21 00:17:01 +02:00
parent 79c900955d
commit 5d1a029a54
12 changed files with 44 additions and 24 deletions
+2 -2
View File
@@ -204,7 +204,7 @@ async function addUser() {
label="Start?"
:model-value="!!formData.cloned.value.start"
@update:model-value="
(newVal) =>
(newVal: boolean) =>
(formData.cloned.value!.start = newVal ? new Date() : null)
"
/>
@@ -227,7 +227,7 @@ async function addUser() {
label="End?"
:model-value="!!formData.cloned.value.end"
@update:model-value="
(newVal) =>
(newVal: boolean) =>
(formData.cloned.value!.end = newVal ? new Date() : null)
"
/>