summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--settings/src/components/appList.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/src/components/appList.vue b/settings/src/components/appList.vue
index 734bc9d55fa..ddef5aa2165 100644
--- a/settings/src/components/appList.vue
+++ b/settings/src/components/appList.vue
@@ -27,7 +27,7 @@
<app-item v-for="app in apps" :key="app.id" :app="app" :category="category" />
</template>
<template v-for="bundle in bundles" v-if="useBundleView && bundleApps(bundle.id).length > 0">
- <div class="apps-header">
+ <div class="apps-header" :key="bundle.id">
<div class="app-image"></div>
<h2>{{ bundle.name }} <input type="button" :value="bundleToggleText(bundle.id)" v-on:click="toggleBundle(bundle.id)"></h2>
<div class="app-version"></div>
@@ -99,7 +99,7 @@ export default {
return apps.filter(app => app.active);
}
if (this.category === 'disabled') {
- return apps.filter(app => !app.active);
+ return apps.filter(app => !app.active && app.installed);
}
if (this.category === 'app-bundles') {
return apps.filter(app => app.bundles);