Compare commits

...
This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.

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) {