fix unbinded method in root component

This commit is contained in:
igoradamenko
2018-03-19 00:36:35 +02:00
parent a62e2e09e8
commit 0471d105e1
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -26,6 +26,7 @@ export default class Root extends Component {
this.onSignOut = this.onSignOut.bind(this);
this.onBlockedUsersShow = this.onBlockedUsersShow.bind(this);
this.onBlockedUsersHide = this.onBlockedUsersHide.bind(this);
this.onUnblockSomeone = this.onUnblockSomeone.bind(this);
this.checkUrlHash = this.checkUrlHash.bind(this);
}