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 <[email protected]>
  • Loading branch information
andrey18106 committed Jan 7, 2025
1 parent 83ca89a commit 83611e0
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 83611e0

Please sign in to comment.