Skip to content

Commit

Permalink
Merge pull request #49885 from nextcloud/fix/settings/ex-apps-search
Browse files Browse the repository at this point in the history
fix(app-store): add missing exApps list items to search filter
  • Loading branch information
nickvergessen authored Jan 3, 2025
2 parents 0f2b628 + 9b88055 commit b16f5a0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
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
4 changes: 2 additions & 2 deletions dist/settings-apps-view-4529.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/settings-apps-view-4529.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/settings-vue-settings-apps-users-management.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/settings-vue-settings-apps-users-management.js.map

Large diffs are not rendered by default.

0 comments on commit b16f5a0

Please sign in to comment.