From 6349ebdb860fa6af5c48d85e5096732468aac06f Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Mon, 16 Dec 2024 18:14:48 +0200 Subject: [PATCH] fix(app-store): add missing exApps list items to search filter Signed-off-by: Andrey Borysenko --- apps/settings/src/components/AppList.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue index 8271fc6f271e8..8d874982e0d0c 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))