diff options
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/accounts/index.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/accounts/index.js b/ui/app/accounts/index.js index f7ae5c53e..6e12accc7 100644 --- a/ui/app/accounts/index.js +++ b/ui/app/accounts/index.js @@ -37,7 +37,6 @@ AccountsScreen.prototype.render = function () { var actions = { onSelect: this.onSelect.bind(this), onShowDetail: this.onShowDetail.bind(this), - revealAccount: this.onRevealAccount.bind(this), goHome: this.goHome.bind(this), } return ( @@ -88,7 +87,7 @@ AccountsScreen.prototype.render = function () { h('div.footer.hover-white.pointer', { key: 'reveal-account-bar', onClick: () => { - actions.revealAccount() + this.onRevealAccount() }, style: { display: 'flex', |