1
0

fix(task): repeat mode now saves correctly

This commit is contained in:
kolaente
2023-06-13 12:33:35 +02:00
parent 5694b39489
commit 79ceaf6a2b
2 changed files with 2 additions and 6 deletions

View File

@ -56,7 +56,6 @@ const reminders = ref<ITaskReminder[]>([])
watch(
() => props.modelValue.reminders,
(newVal) => {
console.log('change', newVal)
reminders.value = newVal
},
{immediate: true, deep: true}, // deep watcher so that we get the resolved date after updating the task