diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-01-24 12:50:06 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-01-27 17:16:20 +0100 |
commit | 9bff2e7f031fd3bdf9a41f8558c28f35a8298fad (patch) | |
tree | d316aab500ba350cca948a1efa5686afef30af49 /apps/settings/src | |
parent | c99c969d5598f1cf9304316907ab4f3f5597079b (diff) | |
download | nextcloud-server-9bff2e7f031fd3bdf9a41f8558c28f35a8298fad.tar.gz nextcloud-server-9bff2e7f031fd3bdf9a41f8558c28f35a8298fad.zip |
apps can have polyamorous relationships with bundles
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/settings/src')
-rw-r--r-- | apps/settings/src/components/AppList.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue index 2fecf137dd8..5a0e570742f 100644 --- a/apps/settings/src/components/AppList.vue +++ b/apps/settings/src/components/AppList.vue @@ -158,7 +158,9 @@ export default { bundleApps() { return function(bundle) { return this.$store.getters.getAllApps - .filter(app => app.bundleId === bundle) + .filter(app => { + return app.bundleIds !== undefined && app.bundleIds.includes(bundle) + }) } }, searchApps() { |