diff options
| author | Henry Jameson <me@hjkos.com> | 2022-08-15 23:31:05 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-08-15 23:31:05 +0300 |
| commit | bbd99dc3cf5e4877c9f2cb824c0ca74a681c2fa0 (patch) | |
| tree | d119f62f2fa4d627a20a82b372b443999e88a2fb /src/components/lists_timeline | |
| parent | 50f5afbce1f2bc4dbd0ddf6c951c7e519dfc6ce3 (diff) | |
fix
Diffstat (limited to 'src/components/lists_timeline')
| -rw-r--r-- | src/components/lists_timeline/lists_timeline.js | 4 |
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 () { |
