From 47707fbb4a17b4d52450775f8088327911e8621b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ce=C4=BEuch?= Date: Tue, 13 Feb 2024 18:32:10 +0100 Subject: [PATCH] only show relevant issues at homepage --- src/views/home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/home.vue b/src/views/home.vue index 2217ba0..1f87f5f 100644 --- a/src/views/home.vue +++ b/src/views/home.vue @@ -99,7 +99,7 @@ export default { const config = { params: { jql: - "project = SDM AND component = e-services AND status != New AND status != Closed AND status != Resolved ORDER BY created DESC", + "project = SDM AND component = e-services AND (status = \"Waiting for Statement\" OR status = \"In Progress\") ORDER BY created DESC", fields: "summary,created,customfield_10038", maxResults: "5", },