aboutsummaryrefslogtreecommitdiff
path: root/src/components/public_timeline/public_timeline.js
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2019-02-09 06:56:46 +0000
committerShpuld Shpludson <shp@cock.li>2019-02-09 06:56:46 +0000
commit5296d41372cc6c25aedcdf44ce8b866b57e3b04b (patch)
treecd6ce603852439a48bf4a8bdf3ae55324c3e2bd5 /src/components/public_timeline/public_timeline.js
parent531f150dd31ffc11b6f67145f4245b20457544aa (diff)
parent0dc7c45f324c246cc74c6ed55c006c67742c4139 (diff)
Merge branch 'fix/js-error-in-tag-page' into 'develop'
Fixed JS error in tag page See merge request pleroma/pleroma-fe!543
Diffstat (limited to 'src/components/public_timeline/public_timeline.js')
-rw-r--r--src/components/public_timeline/public_timeline.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/public_timeline/public_timeline.js b/src/components/public_timeline/public_timeline.js
index 9b866be8..64c951ac 100644
--- a/src/components/public_timeline/public_timeline.js
+++ b/src/components/public_timeline/public_timeline.js
@@ -7,7 +7,7 @@ const PublicTimeline = {
timeline () { return this.$store.state.statuses.timelines.public }
},
created () {
- this.$store.dispatch('startFetching', 'public')
+ this.$store.dispatch('startFetching', { timeline: 'public' })
},
destroyed () {
this.$store.dispatch('stopFetching', 'public')