chore: make disabled prop optional in RepeatAfter component

This commit is contained in:
kolaente 2025-05-13 21:48:34 +02:00
parent 12e1a90f79
commit 7beec2ef5a
1 changed files with 1 additions and 2 deletions

View File

@ -106,9 +106,8 @@ import TaskModel from '@/models/task'
const props = withDefaults(defineProps<{
modelValue: ITask | undefined,
disabled: boolean
disabled?: boolean
}>(), {
modelValue: () => {},
disabled: false,
})