aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/timeline/timeline.js')
-rw-r--r--src/components/timeline/timeline.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js
index 7aaa81c8..3dc07f9e 100644
--- a/src/components/timeline/timeline.js
+++ b/src/components/timeline/timeline.js
@@ -6,7 +6,8 @@ const Timeline = {
props: [
'timeline',
'timelineName',
- 'title'
+ 'title',
+ 'userId'
],
computed: {
timelineError () { return this.$store.state.statuses.error }
@@ -26,7 +27,8 @@ const Timeline = {
store,
credentials,
timeline: this.timelineName,
- showImmediately
+ showImmediately,
+ userId: this.userId
})
},
methods: {
@@ -42,7 +44,8 @@ const Timeline = {
credentials,
timeline: this.timelineName,
older: true,
- showImmediately: true
+ showImmediately: true,
+ userId: this.userId
}).then(() => store.commit('setLoading', { timeline: this.timelineName, value: false }))
},
scrollLoad (e) {