Refresh tasks lists after a task has been updated

This commit is contained in:
Sean Hurley 2023-02-06 01:10:24 -07:00
parent 8902c15f7e
commit 96564ef495
1 changed files with 3 additions and 0 deletions

View File

@ -249,6 +249,9 @@ function updateTasks(updatedTask: ITask) {
break
}
}
// After a task has been updated, reload tasks to ensure filters are applied to any changes
loadTasks()
}
async function saveTaskPosition(e) {