diff --git a/settings/src/components/appList.vue b/settings/src/components/appList.vue index a1eb71f46d..2bec287a28 100644 --- a/settings/src/components/appList.vue +++ b/settings/src/components/appList.vue @@ -83,6 +83,9 @@ export default { .filter(app => app.name.toLowerCase().search(this.search.toLowerCase()) !== -1) }, searchApps() { + if (this.search === '') { + return []; + } return this.$store.getters.getAllApps .filter(app => { if (app.name.toLowerCase().search(this.search.toLowerCase()) !== -1) {