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 0f23cc2162
commit f14f7bee74
1 changed files with 5 additions and 0 deletions

View File

@ -257,6 +257,11 @@ function updateTasks(updatedTask: ITask) {
break
}
}
// 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) {