Fix lint errors
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2020-10-02 18:42:28 +02:00
parent 9ee277cab0
commit 3bc90f219e
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 3 additions and 3 deletions

View File

@ -136,7 +136,7 @@ export default {
this.load()
},
watch: {
listId: () => { // watch it
listId() { // watch it
this.load()
},
},

View File

@ -134,7 +134,7 @@ export default {
this.taskService.update(this.task)
.then(t => {
this.task = t
this.$emit('taskUpdated', t)
this.$emit('task-updated', t)
this.success(
{message: 'The task was successfully ' + (this.task.done ? '' : 'un-') + 'marked as done.'},
this,
@ -164,7 +164,7 @@ export default {
this.taskService.update(this.task)
.then(t => {
this.task = t
this.$emit('taskUpdated', t)
this.$emit('task-updated', t)
this.$store.dispatch('namespaces/loadNamespacesIfFavoritesDontExist')
})
.catch(e => {