From 86b3cb512052b8969e2f259dd784569738efe33f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 30 Jan 2017 22:35:36 +0100 Subject: Fix not reloading account/fetching relationship on newly independent components --- app/assets/javascripts/components/features/followers/index.jsx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/assets/javascripts/components/features/followers') diff --git a/app/assets/javascripts/components/features/followers/index.jsx b/app/assets/javascripts/components/features/followers/index.jsx index b96516813..1b9548c7e 100644 --- a/app/assets/javascripts/components/features/followers/index.jsx +++ b/app/assets/javascripts/components/features/followers/index.jsx @@ -3,6 +3,7 @@ import PureRenderMixin from 'react-addons-pure-render-mixin'; import ImmutablePropTypes from 'react-immutable-proptypes'; import LoadingIndicator from '../../components/loading_indicator'; import { + fetchAccount, fetchFollowers, expandFollowers } from '../../actions/accounts'; @@ -28,11 +29,13 @@ const Followers = React.createClass({ mixins: [PureRenderMixin], componentWillMount () { + this.props.dispatch(fetchAccount(Number(this.props.params.accountId))); this.props.dispatch(fetchFollowers(Number(this.props.params.accountId))); }, componentWillReceiveProps(nextProps) { if (nextProps.params.accountId !== this.props.params.accountId && nextProps.params.accountId) { + this.props.dispatch(fetchAccount(Number(nextProps.params.accountId))); this.props.dispatch(fetchFollowers(Number(nextProps.params.accountId))); } }, -- cgit