Fix navigating back to list view after deleting a task
This commit is contained in:
parent
120d5a8c19
commit
b043369245
6 changed files with 8 additions and 20 deletions
|
|
@ -141,7 +141,7 @@
|
|||
<div class="more-container" :key="n.id + 'child'">
|
||||
<ul class="menu-list can-be-hidden" >
|
||||
<li v-for="l in n.lists" :key="l.id">
|
||||
<router-link :to="{ name: 'showList', params: { listId: l.id} }">
|
||||
<router-link :to="{ name: 'list.index', params: { listId: l.id} }">
|
||||
<span class="name">
|
||||
<span class="color-bubble" v-if="l.hexColor !== ''" :style="{ backgroundColor: l.hexColor }"></span>
|
||||
{{l.title}}
|
||||
|
|
|
|||
Reference in a new issue