fix(ci): eslint fix, minor correction after rebase

Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
This commit is contained in:
Andrey Borysenko 2024-10-29 14:03:02 +02:00
parent dcc09ff562
commit 24b221ca41
No known key found for this signature in database
GPG key ID: 934CB29F9F59B0D1

View file

@ -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)
}))
},
},
}