diff --git a/frontend/src/components/project/partials/filters.vue b/frontend/src/components/project/partials/filters.vue
index 58ea80970..ad1bf4e97 100644
--- a/frontend/src/components/project/partials/filters.vue
+++ b/frontend/src/components/project/partials/filters.vue
@@ -19,7 +19,7 @@
-
+
labelStore.filterLabelsByQuery([], labelTitle)[0]?.id || null,
projectTitle => {
const found = projectStore.findProjectByExactname(projectTitle)
-
- if (found === null) {
- return null
- }
-
- return found[0]?.id || null
+ return found?.id || null
},
)