Skip to content

Commit

Permalink
fix(ci): eslint fix, minor correction after rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
  • Loading branch information
andrey18106 committed Oct 29, 2024
1 parent 8a9f190 commit b0e3af3
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions apps/settings/src/components/AppList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -317,14 +317,9 @@ export default {
const limit = pLimit(1)
this.apps
.filter(app => app.update)
.map(app => limit(() => {
let type = 'updateApp'
if (app?.app_api) {
type = 'app_api_apps/updateApp'
}
this.$store.dispatch(type, { appId: app.id })
}),
)
.map((app) => limit(() => {
this.update(app.id)
}))
},
},
}
Expand Down

0 comments on commit b0e3af3

Please sign in to comment.