Compare commits

...

3 Commits

1 changed files with 5 additions and 0 deletions

View File

@ -257,6 +257,11 @@ function updateTasks(updatedTask: ITask) {
break
}
}
// After a task has been updated, reload tasks to ensure filters are applied if due date changes
if (updatedTask.dueDate !== null) {
loadTasks()
}
}
async function saveTaskPosition(e) {