diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-06-09 12:07:12 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-06-09 12:07:12 +0200 |
commit | c8be44be9082f7a085d3fb62c20744dba8c84fd0 (patch) | |
tree | 8ebafe96b76fad90dd17bd6ed031b54a527af78f /settings/src | |
parent | cdbe39d0069b107ec0b2d77b262f108f06519199 (diff) | |
download | nextcloud-server-c8be44be9082f7a085d3fb62c20744dba8c84fd0.tar.gz nextcloud-server-c8be44be9082f7a085d3fb62c20744dba8c84fd0.zip |
Add key and fix disabled apps listing
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'settings/src')
-rw-r--r-- | settings/src/components/appList.vue | 4 |
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); |