about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/public_timeline
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-16 19:23:17 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-16 19:23:17 +0200
commitf0f791bb76bbe1e8ea4329b3c5ebcbb9f7076b0d (patch)
tree266a5d59f806822914fb8e66aad4b9771376842e /app/assets/javascripts/components/features/public_timeline
parent0895ff414e73212e23c3d680846b5b8b7666bdfd (diff)
Don't preload timelines as props, load them when timeline component is mounted
This prevents the bug where if you go "back" to the UI after navigating to
another page it loads with the old set of statuses
Diffstat (limited to 'app/assets/javascripts/components/features/public_timeline')
-rw-r--r--app/assets/javascripts/components/features/public_timeline/index.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/javascripts/components/features/public_timeline/index.jsx b/app/assets/javascripts/components/features/public_timeline/index.jsx
index 7d3739214..8b2a86947 100644
--- a/app/assets/javascripts/components/features/public_timeline/index.jsx
+++ b/app/assets/javascripts/components/features/public_timeline/index.jsx
@@ -9,6 +9,10 @@ import {
 
 const PublicTimeline = React.createClass({
 
+  propTypes: {
+    dispatch: React.PropTypes.func.isRequired
+  },
+
   mixins: [PureRenderMixin],
 
   componentWillMount () {