fix: update page title when changing the task title
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2022-02-26 13:14:08 +01:00
parent 45c05296a6
commit 7b62a0895d
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 7 additions and 0 deletions

View File

@ -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() {