fix: update page title when changing the task title
This commit is contained in:
parent
45c05296a6
commit
7b62a0895d
1 changed files with 7 additions and 0 deletions
|
@ -520,6 +520,13 @@ export default {
|
|||
},
|
||||
immediate: true,
|
||||
},
|
||||
// Using a watcher here because the header component handles saving the task with the api but we want to decouple
|
||||
// it from the page title.
|
||||
'task.title': {
|
||||
handler(title) {
|
||||
this.setTitle(title)
|
||||
},
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
currentList() {
|
||||
|
|
Loading…
Reference in a new issue