diff options
| author | Alexander Tumin <iamtakingiteasy@eientei.org> | 2022-08-06 21:39:08 +0300 |
|---|---|---|
| committer | Alexander Tumin <iamtakingiteasy@eientei.org> | 2022-08-06 21:39:36 +0300 |
| commit | 891fbf996d7ddd415d99ea9065d54b0f493b5422 (patch) | |
| tree | adb88c7c32cc9baa00f6fd763bf6efb37bffde62 /src/components/lists_card/lists_card.vue | |
| parent | b5eba5974ca86cdb0b5f3caaa9c89466a07d8449 (diff) | |
Lists implementation: make route naming consistent
Diffstat (limited to 'src/components/lists_card/lists_card.vue')
| -rw-r--r-- | src/components/lists_card/lists_card.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/lists_card/lists_card.vue b/src/components/lists_card/lists_card.vue index c0d58f18..13866d8c 100644 --- a/src/components/lists_card/lists_card.vue +++ b/src/components/lists_card/lists_card.vue @@ -1,13 +1,13 @@ <template> <div class="list-card"> <router-link - :to="{ name: 'list-timeline', params: { id: list.id } }" + :to="{ name: 'lists-timeline', params: { id: list.id } }" class="list-name" > {{ list.title }} </router-link> <router-link - :to="{ name: 'list-edit', params: { id: list.id } }" + :to="{ name: 'lists-edit', params: { id: list.id } }" class="button-list-edit" > <FAIcon |
