Skip to content

Commit

Permalink
fix(app-store): add missing exApps list items to search filter
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
  • Loading branch information
andrey18106 committed Dec 24, 2024
1 parent 4b3b09f commit 6349ebd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/settings/src/components/AppList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 6349ebd

Please sign in to comment.