mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(ci): eslint fix, minor correction after rebase
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
This commit is contained in:
parent
dcc09ff562
commit
24b221ca41
1 changed files with 3 additions and 8 deletions
|
|
@ -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)
|
||||
}))
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue