Fix creating a new task on a list when in list view
This commit is contained in:
parent
d6642550bd
commit
a5c0b035e7
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user