Skip to content

Commit

Permalink
Apply suggestion
Browse files Browse the repository at this point in the history
Co-authored-by: Andreas Hasenkopf <[email protected]>
  • Loading branch information
TeodoraPavlova and crazyscientist authored Apr 19, 2024
1 parent cac58ee commit 7eab248
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/EntityList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ export default {
this.selected = this.$refs.selector.getSelected();
},
onDeletion() {
const promises = this.selected.map(async eId => {
await this.$api.deleteEntity({
const promises = this.selected.map(eId => {
return this.$api.deleteEntity({
schemaSlug: this.schema.slug,
entityIdOrSlug: eId
});
Expand Down

0 comments on commit 7eab248

Please sign in to comment.