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 0c6f1a4083
commit d0998b31c8
1 changed files with 3 additions and 0 deletions

View File

@ -270,6 +270,9 @@ function updateTasks(updatedTask: ITask) {
}
// FIXME: Use computed
sortTasks(tasks.value)
// After a task has been updated, reload tasks to ensure filters are applied to any changes
loadTasks()
}
async function saveTaskPosition(e) {