diff options
Fix account navigation link
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r-- | ui/app/account-detail.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index 0c1b5c72e..10c33c2bc 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -48,9 +48,7 @@ AccountDetailScreen.prototype.render = function() { // subtitle and nav h('.section-title.flex-row.flex-center', [ h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', { - onClick: (event) => { - state.dispatch(actions.goHome()) - } + onClick: this.navigateToAccounts.bind(this), }), h('h2.page-subtitle', 'Account Detail'), ]), |