diff options
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r-- | ui/app/account-detail.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index c93eef4fd..0c1b5c72e 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -47,6 +47,11 @@ 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()) + } + }), h('h2.page-subtitle', 'Account Detail'), ]), @@ -64,10 +69,6 @@ AccountDetailScreen.prototype.render = function() { }, [ h('button', { - onClick: this.navigateToAccounts.bind(this), - }, 'CHANGE ACCT'), - - h('button', { onClick: () => { copyToClipboard(identity.address) }, |