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 6711a08de9
commit 5e51b144c2
1 changed files with 3 additions and 0 deletions

View File

@ -257,6 +257,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) {