aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/lists_card/lists_card.vue4
-rw-r--r--src/components/lists_edit/lists_edit.js2
-rw-r--r--src/components/lists_menu/lists_menu_content.vue2
-rw-r--r--src/components/lists_new/lists_new.js2
-rw-r--r--src/components/lists_timeline/lists_timeline.js2
-rw-r--r--src/components/timeline_menu/timeline_menu.js2
6 files changed, 7 insertions, 7 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
diff --git a/src/components/lists_edit/lists_edit.js b/src/components/lists_edit/lists_edit.js
index 7b642929..a68bb589 100644
--- a/src/components/lists_edit/lists_edit.js
+++ b/src/components/lists_edit/lists_edit.js
@@ -79,7 +79,7 @@ const ListsNew = {
this.$store.dispatch('setList', { id: this.id, title: this.title })
this.$store.dispatch('setListAccounts', { id: this.id, accountIds: this.selectedUserIds })
- this.$router.push({ name: 'list-timeline', params: { id: this.id } })
+ this.$router.push({ name: 'lists-timeline', params: { id: this.id } })
},
deleteList () {
this.$store.dispatch('deleteList', { id: this.id })
diff --git a/src/components/lists_menu/lists_menu_content.vue b/src/components/lists_menu/lists_menu_content.vue
index 5606b74f..e910d6eb 100644
--- a/src/components/lists_menu/lists_menu_content.vue
+++ b/src/components/lists_menu/lists_menu_content.vue
@@ -6,7 +6,7 @@
>
<router-link
class="menu-item"
- :to="{ name: 'list-timeline', params: { id: list.id } }"
+ :to="{ name: 'lists-timeline', params: { id: list.id } }"
>
{{ list.title }}
</router-link>
diff --git a/src/components/lists_new/lists_new.js b/src/components/lists_new/lists_new.js
index 7e3470fa..63dc28ad 100644
--- a/src/components/lists_new/lists_new.js
+++ b/src/components/lists_new/lists_new.js
@@ -70,7 +70,7 @@ const ListsNew = {
this.$store.dispatch('createList', { title: this.title })
.then((list) => {
this.$store.dispatch('setListAccounts', { id: list.id, accountIds: this.selectedUserIds })
- this.$router.push({ name: 'list-timeline', params: { id: list.id } })
+ this.$router.push({ name: 'lists-timeline', params: { id: list.id } })
})
}
}
diff --git a/src/components/lists_timeline/lists_timeline.js b/src/components/lists_timeline/lists_timeline.js
index 4611a736..7534420d 100644
--- a/src/components/lists_timeline/lists_timeline.js
+++ b/src/components/lists_timeline/lists_timeline.js
@@ -13,7 +13,7 @@ const ListsTimeline = {
},
watch: {
$route: function (route) {
- if (route.name === 'list-timeline' && route.params.id !== this.listId) {
+ if (route.name === 'lists-timeline' && route.params.id !== this.listId) {
this.listId = route.params.id
this.$store.dispatch('stopFetchingTimeline', 'list')
this.$store.commit('clearTimeline', { timeline: 'list' })
diff --git a/src/components/timeline_menu/timeline_menu.js b/src/components/timeline_menu/timeline_menu.js
index 0792dc13..5a67b0a5 100644
--- a/src/components/timeline_menu/timeline_menu.js
+++ b/src/components/timeline_menu/timeline_menu.js
@@ -58,7 +58,7 @@ const TimelineMenu = {
if (route === 'tag-timeline') {
return '#' + this.$route.params.tag
}
- if (route === 'list-timeline') {
+ if (route === 'lists-timeline') {
return this.$store.getters.findListTitle(this.$route.params.id)
}
const i18nkey = timelineNames()[this.$route.name]