diff options
author | Andrey Borysenko <andrey18106x@gmail.com> | 2024-12-16 18:14:48 +0200 |
---|---|---|
committer | Andrey Borysenko <andrey18106x@gmail.com> | 2025-01-02 21:29:44 +0200 |
commit | ac0cd2f45ada2748dff50ac5cc398333e1f247e4 (patch) | |
tree | 4ac32b491b1b190b0ea312675e261eaba070a781 | |
parent | d4ce30764a7789725371f9978f292c52b3707c66 (diff) | |
download | nextcloud-server-ac0cd2f45ada2748dff50ac5cc398333e1f247e4.tar.gz nextcloud-server-ac0cd2f45ada2748dff50ac5cc398333e1f247e4.zip |
fix(app-store): add missing exApps list items to search filter
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
-rw-r--r-- | apps/settings/src/components/AppList.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue index 8271fc6f271..8d874982e0d 100644 --- a/apps/settings/src/components/AppList.vue +++ b/apps/settings/src/components/AppList.vue @@ -250,7 +250,8 @@ export default { if (this.search === '') { return [] } - return this.$store.getters.getAllApps + const exApps = this.$store.getters.isAppApiEnabled ? this.appApiStore.getAllApps : [] + return [...this.$store.getters.getAllApps, ...exApps] .filter(app => { if (app.name.toLowerCase().search(this.search.toLowerCase()) !== -1) { return (!this.apps.find(_app => _app.id === app.id)) |