fix: ignore saved homepage filter when browsing by label

This commit is contained in:
kolaente 2026-03-24 22:46:41 +01:00 committed by kolaente
parent 7208c11556
commit fd4f7accc3
1 changed files with 2 additions and 1 deletions

View File

@ -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
}