aboutsummaryrefslogtreecommitdiff
path: root/src/components/lists_timeline
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-08-15 23:31:05 +0300
committerHenry Jameson <me@hjkos.com>2022-08-15 23:31:05 +0300
commitbbd99dc3cf5e4877c9f2cb824c0ca74a681c2fa0 (patch)
treed119f62f2fa4d627a20a82b372b443999e88a2fb /src/components/lists_timeline
parent50f5afbce1f2bc4dbd0ddf6c951c7e519dfc6ce3 (diff)
fix
Diffstat (limited to 'src/components/lists_timeline')
-rw-r--r--src/components/lists_timeline/lists_timeline.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/lists_timeline/lists_timeline.js b/src/components/lists_timeline/lists_timeline.js
index 7534420d..c3f408bd 100644
--- a/src/components/lists_timeline/lists_timeline.js
+++ b/src/components/lists_timeline/lists_timeline.js
@@ -17,14 +17,14 @@ const ListsTimeline = {
this.listId = route.params.id
this.$store.dispatch('stopFetchingTimeline', 'list')
this.$store.commit('clearTimeline', { timeline: 'list' })
- this.$store.dispatch('fetchList', { id: this.listId })
+ this.$store.dispatch('fetchList', { listId: this.listId })
this.$store.dispatch('startFetchingTimeline', { timeline: 'list', listId: this.listId })
}
}
},
created () {
this.listId = this.$route.params.id
- this.$store.dispatch('fetchList', { id: this.listId })
+ this.$store.dispatch('fetchList', { listId: this.listId })
this.$store.dispatch('startFetchingTimeline', { timeline: 'list', listId: this.listId })
},
unmounted () {