Fix redirecting to list view from task detail
This commit is contained in:
parent
2ca8eef4f7
commit
b1de52fc0b
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue