diff --git a/src/App.vue b/src/App.vue index 446db31a6..a329775d7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -283,9 +283,11 @@ export default { const searchResultItems = []; for (const group of this.config.services) { - for (const item of group.items) { - if (this.matchesFilter(item)) { - searchResultItems.push(item); + if (group.items !== null) { + for (const item of group.items) { + if (this.matchesFilter(item)) { + searchResultItems.push(item); + } } } }