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 }