aboutsummaryrefslogtreecommitdiff
path: root/src/components/public_and_external_timeline
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/public_and_external_timeline')
-rw-r--r--src/components/public_and_external_timeline/public_and_external_timeline.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/public_and_external_timeline/public_and_external_timeline.js b/src/components/public_and_external_timeline/public_and_external_timeline.js
index 138118ad..0db6efae 100644
--- a/src/components/public_and_external_timeline/public_and_external_timeline.js
+++ b/src/components/public_and_external_timeline/public_and_external_timeline.js
@@ -5,6 +5,12 @@ const PublicAndExternalTimeline = {
},
computed: {
timeline () { return this.$store.state.statuses.timelines.publicAndExternal }
+ },
+ created () {
+ this.$store.dispatch('startFetching', 'publicAndExternal')
+ },
+ destroyed () {
+ this.$store.dispatch('stopFetching', 'publicAndExternal')
}
}