Merge pull request #1325 from matrix-org/rob/appdrawer-bind

AppsDrawer: Remove unnecessary bind
pull/21833/head
Robert Swain 2017-08-21 15:59:47 +02:00 committed by GitHub
commit bfb6f8f273
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ module.exports = React.createClass({
});
}
this.dispatcherRef = dis.register(this.onAction.bind(this));
this.dispatcherRef = dis.register(this.onAction);
},
componentWillUnmount: function() {