]> cat aescling's git repositories - mastodon.git/commitdiff
Fix function call name typo (#1851)
authorHenry Smith <henry@henrysmith.org>
Sat, 15 Apr 2017 14:41:22 +0000 (16:41 +0200)
committerEugen <eugen@zeonfederated.com>
Sat, 15 Apr 2017 14:41:22 +0000 (16:41 +0200)
app/assets/javascripts/components/features/followers/index.jsx

index bcadf60104047f872d8ce6427a341ba54062f48c..af0a0a16aa9265fdbdcfd3308f6242e396916ad2 100644 (file)
@@ -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 () {