Add async keyword

This commit is contained in:
Raimund Schlüßler 2019-01-05 08:22:37 +01:00
parent 09905cde64
commit cb9276a6b0
No known key found for this signature in database
GPG key ID: 036FA7EB1A599178

View file

@ -486,7 +486,7 @@ const actions = {
context.dispatch('updateTask', task)
},
toggleStarred(context, task) {
async toggleStarred(context, task) {
context.commit('toggleStarred', task)
context.dispatch('updateTask', task)
},