diff options
Diffstat (limited to 'settings/src/components/appList.vue')
-rw-r--r-- | settings/src/components/appList.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/src/components/appList.vue b/settings/src/components/appList.vue index dd19c44d885..053c6056ba9 100644 --- a/settings/src/components/appList.vue +++ b/settings/src/components/appList.vue @@ -101,7 +101,7 @@ export default { return apps.filter(app => app.installed); } if (this.category === 'enabled') { - return apps.filter(app => app.active); + return apps.filter(app => app.active && app.installed); } if (this.category === 'disabled') { return apps.filter(app => !app.active && app.installed); |