From fd4f7accc3fe216382da9bcf5a775674711d13e8 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 24 Mar 2026 22:46:41 +0100 Subject: [PATCH] fix: ignore saved homepage filter when browsing by label --- frontend/src/views/tasks/ShowTasks.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/views/tasks/ShowTasks.vue b/frontend/src/views/tasks/ShowTasks.vue index 4ca0c80a8..a50305fa8 100644 --- a/frontend/src/views/tasks/ShowTasks.vue +++ b/frontend/src/views/tasks/ShowTasks.vue @@ -262,7 +262,8 @@ async function loadPendingTasks(from: Date|string, to: Date|string, filterId: nu } let projectId = null - if (showAll.value && filterId && typeof projectStore.projects[filterId] !== 'undefined') { + if (showAll.value && filterId && typeof projectStore.projects[filterId] !== 'undefined' + && (!props.labelIds || props.labelIds.length === 0)) { projectId = filterId }