Only reload tasks when filtering on due date and due date is set on the updated task

This commit is contained in:
Sean Hurley 2023-02-16 23:11:59 -07:00
parent f14f7bee74
commit 6cb0832e92

View File

@ -260,8 +260,10 @@ function updateTasks(updatedTask: ITask) {
// FIXME: Use computed // FIXME: Use computed
sortTasks(tasks.value) sortTasks(tasks.value)
// After a task has been updated, reload tasks to ensure filters are applied to any changes // After a task has been updated, reload tasks to ensure filters are applied to any changes if filters are set
loadTasks() if (updatedTask.dueDate !== null && params.value.filter_by.includes('due_date')) {
loadTasks()
}
} }
async function saveTaskPosition(e) { async function saveTaskPosition(e) {