diff options
author | Henry Smith <henry@henrysmith.org> | 2017-04-15 16:41:22 +0200 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-15 16:41:22 +0200 |
commit | b7ec2fd4924dc186acc9205044d1539f1e267e0e (patch) | |
tree | 379f9f9d3154b6ec41d9e30801e451751b05b94d /app | |
parent | 3b8908c11470f63d846c631f26cf45f9a4b28663 (diff) |
Fix function call name typo (#1851)
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/components/features/followers/index.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/followers/index.jsx b/app/assets/javascripts/components/features/followers/index.jsx index bcadf6010..af0a0a16a 100644 --- a/app/assets/javascripts/components/features/followers/index.jsx +++ b/app/assets/javascripts/components/features/followers/index.jsx @@ -50,7 +50,7 @@ const Followers = React.createClass({ handleLoadMore (e) { e.preventDefault(); - this.props.dispatch(expandFollowing(Number(this.props.params.accountId))); + this.props.dispatch(expandFollowers(Number(this.props.params.accountId))); }, render () { |