aboutsummaryrefslogtreecommitdiff
path: root/src/components/lists_timeline/lists_timeline.js
diff options
context:
space:
mode:
authorAlexander Tumin <iamtakingiteasy@eientei.org>2022-08-06 21:39:08 +0300
committerAlexander Tumin <iamtakingiteasy@eientei.org>2022-08-06 21:39:36 +0300
commit891fbf996d7ddd415d99ea9065d54b0f493b5422 (patch)
treeadb88c7c32cc9baa00f6fd763bf6efb37bffde62 /src/components/lists_timeline/lists_timeline.js
parentb5eba5974ca86cdb0b5f3caaa9c89466a07d8449 (diff)
Lists implementation: make route naming consistent
Diffstat (limited to 'src/components/lists_timeline/lists_timeline.js')
-rw-r--r--src/components/lists_timeline/lists_timeline.js2
1 files changed, 1 insertions, 1 deletions
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' })