diff --git a/src/components/quick-actions/quick-actions.vue b/src/components/quick-actions/quick-actions.vue
index 480d31f99..8a948767c 100644
--- a/src/components/quick-actions/quick-actions.vue
+++ b/src/components/quick-actions/quick-actions.vue
@@ -48,7 +48,7 @@
-
@@ -148,12 +148,18 @@ function closeQuickActions() {
}
const foundProjects = computed(() => {
- const {project, text} = parsedQuery.value
- if (
- searchMode.value === SEARCH_MODE.ALL ||
- searchMode.value === SEARCH_MODE.PROJECTS ||
- text === ''
- ) {
+ const {project, text, labels, assignees} = parsedQuery.value
+
+ if (project !== null) {
+ return projectStore.searchProject(project ?? text)
+ .filter(p => Boolean(p))
+ }
+
+ if (labels.length > 0 || assignees.length > 0) {
+ return []
+ }
+
+ if (text === '') {
const history = getHistory()
return history.map((p) => projectStore.projects[p.id])
.filter(p => Boolean(p))