Fix creating a new task on a list when in list view
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2020-04-27 12:08:38 +02:00
parent d6642550bd
commit a5c0b035e7
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@
name: 'List',
data() {
return {
listId: this.$route.params.id,
listId: this.$route.params.listId,
taskService: TaskService,
list: {},
isTaskEdit: false,
@ -152,7 +152,7 @@
}
this.showError = false
let task = new TaskModel({text: this.newTaskText, listId: this.$route.params.id})
let task = new TaskModel({text: this.newTaskText, listId: this.listId})
this.taskService.create(task)
.then(r => {
this.tasks.push(r)