aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-05-06 03:23:54 +0800
committerDan Finlay <dan@danfinlay.com>2016-05-06 03:23:54 +0800
commit64b635fc76af108d1e78a31447dc19610c0e8c3e (patch)
tree0786385f47455344f5e11eb30f49002fc2c2ff47 /ui
parentf92189a7219875cfec142e41eb40dcbb8f649d25 (diff)
downloadtangerine-wallet-browser-64b635fc76af108d1e78a31447dc19610c0e8c3e.tar
tangerine-wallet-browser-64b635fc76af108d1e78a31447dc19610c0e8c3e.tar.gz
tangerine-wallet-browser-64b635fc76af108d1e78a31447dc19610c0e8c3e.tar.bz2
tangerine-wallet-browser-64b635fc76af108d1e78a31447dc19610c0e8c3e.tar.lz
tangerine-wallet-browser-64b635fc76af108d1e78a31447dc19610c0e8c3e.tar.xz
tangerine-wallet-browser-64b635fc76af108d1e78a31447dc19610c0e8c3e.tar.zst
tangerine-wallet-browser-64b635fc76af108d1e78a31447dc19610c0e8c3e.zip
Fix account navigation link
Diffstat (limited to 'ui')
-rw-r--r--ui/app/account-detail.js4
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'),
]),