Fix redirecting to list view from task detail
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2020-05-09 23:38:32 +02:00
parent 2ca8eef4f7
commit b1de52fc0b
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@
this.$route.name !== 'list.table' &&
this.$route.name !== 'list.kanban'
) {
router.push({name: 'list.list', params: {id: this.$route.params.listId}})
router.replace({name: 'list.list', params: {id: this.$route.params.listId}})
return
}

View File

@ -11,7 +11,7 @@
</div>
<h6 class="subtitle" v-if="parent && parent.namespace && parent.list">
{{ parent.namespace.name }} >
<router-link :to="{ name: 'list.index', params: { listId: parent.list.id } }">
<router-link :to="{ name: 'list.list', params: { listId: parent.list.id } }">
{{ parent.list.title }}
</router-link>
</h6>