summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
Diffstat (limited to 'settings')
-rw-r--r--settings/src/components/appList.vue3
1 files changed, 3 insertions, 0 deletions
diff --git a/settings/src/components/appList.vue b/settings/src/components/appList.vue
index a1eb71f46d9..2bec287a28e 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) {