Update tasks in kanban board after editing them in task detail view #130

Merged
konrad merged 11 commits from feature/update-task-kanban into master 2020-05-09 17:00:54 +00:00
Showing only changes of commit 8c6a7c639d - Show all commits

View File

@ -61,7 +61,7 @@
ref="dueDate"
>
</flat-pickr>
<a v-if="dueDate" @click="() => {task.dueDate = null;saveTask()}">
<a v-if="dueDate" @click="() => {dueDate = task.dueDate = null;saveTask()}">
<span class="icon is-small">
<icon icon="times"></icon>
</span>
@ -460,6 +460,7 @@
callback: undoCallback,
}]
}
this.dueDate = this.task.dueDate
this.success({message: 'The task was saved successfully.'}, this, actions)
this.setActiveFields()
})