diff --git a/src/views/Home.vue b/src/views/Home.vue index ccfac14b..378cdcdb 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -31,6 +31,7 @@
{{searchValue ? $t('home.no-results') : $t('home.no-data')}} + + @@ -116,6 +119,7 @@ export default { // Otherwise, return the usuall data from conf.yml return this.sections; }, + /* Return all sections, that match users search term */ filteredTiles() { const sections = this.singleSectionView || this.allSections; return sections.filter((section) => this.filterTiles(section.items, this.searchValue));