aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/App.vue b/src/App.vue
index 446db31..a329775 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -283,9 +283,11 @@ export default {
283 283
284 const searchResultItems = []; 284 const searchResultItems = [];
285 for (const group of this.config.services) { 285 for (const group of this.config.services) {
286 for (const item of group.items) { 286 if (group.items !== null) {
287 if (this.matchesFilter(item)) { 287 for (const item of group.items) {
288 searchResultItems.push(item); 288 if (this.matchesFilter(item)) {
289 searchResultItems.push(item);
290 }
289 } 291 }
290 } 292 }
291 } 293 }