From 9fc829115f23b7c482c344567256765f1674920f Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 29 Aug 2023 09:34:08 +0200 Subject: [PATCH] fix(quick actions): project filter --- src/components/quick-actions/quick-actions.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/quick-actions/quick-actions.vue b/src/components/quick-actions/quick-actions.vue index f3922a30df..5b4098e723 100644 --- a/src/components/quick-actions/quick-actions.vue +++ b/src/components/quick-actions/quick-actions.vue @@ -357,7 +357,7 @@ function searchTasks() { if (projectName !== null) { const project = projectStore.findProjectByExactname(projectName) if (project !== null) { - addFilter('projectId', project.id, 'equals') + addFilter('project_id', project.id, 'equals') } }