From 3fe346348b861738e5311eac4f5417b2a86396ca Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 3 Nov 2021 21:37:16 +0100 Subject: [PATCH] fix: parsed task variables not defined --- src/components/quick-actions/quick-actions.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/quick-actions/quick-actions.vue b/src/components/quick-actions/quick-actions.vue index f7cfd814d..157112739 100644 --- a/src/components/quick-actions/quick-actions.vue +++ b/src/components/quick-actions/quick-actions.vue @@ -243,6 +243,8 @@ export default { return SEARCH_MODE_ALL } + const {text, list, labels, assignees} = this.parsedQuery + if (assignees.length === 0 && text !== '') { return SEARCH_MODE_TASKS }