Skip to content

Commit b16f5a0

Browse files
Merge pull request #49885 from nextcloud/fix/settings/ex-apps-search
fix(app-store): add missing exApps list items to search filter
2 parents 0f2b628 + 9b88055 commit b16f5a0

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

apps/settings/src/components/AppList.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,8 @@ export default {
250250
if (this.search === '') {
251251
return []
252252
}
253-
return this.$store.getters.getAllApps
253+
const exApps = this.$store.getters.isAppApiEnabled ? this.appApiStore.getAllApps : []
254+
return [...this.$store.getters.getAllApps, ...exApps]
254255
.filter(app => {
255256
if (app.name.toLowerCase().search(this.search.toLowerCase()) !== -1) {
256257
return (!this.apps.find(_app => _app.id === app.id))

dist/settings-apps-view-4529.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/settings-apps-view-4529.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/settings-vue-settings-apps-users-management.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/settings-vue-settings-apps-users-management.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)