Skip to content

Commit

Permalink
fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
raffis committed Apr 2, 2020
1 parent 9421e92 commit 02b0787
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ export default {
})
},
bulkShelveAlert() {
Promise.All(this.selected.map(a => {
Promise.all(this.selected.map(a => {
this.$store
.dispatch('alerts/takeAction', [
a.id,
Expand All @@ -723,7 +723,7 @@ export default {
map = this.selected.map(a => this.unwatchAlert(a.id))
}
Promise.All(map).then(() => {
Promise.all(map).then(() => {
this.clearSelected()
this.$store.dispatch('alerts/getAlerts')
})
Expand Down

0 comments on commit 02b0787

Please sign in to comment.