1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-22 17:33:23 +01:00

Fix account navigation link

This commit is contained in:
Dan Finlay 2016-05-05 12:23:54 -07:00
parent f92189a721
commit 64b635fc76

View File

@ -48,9 +48,7 @@ AccountDetailScreen.prototype.render = function() {
// subtitle and nav // subtitle and nav
h('.section-title.flex-row.flex-center', [ h('.section-title.flex-row.flex-center', [
h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', { h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', {
onClick: (event) => { onClick: this.navigateToAccounts.bind(this),
state.dispatch(actions.goHome())
}
}), }),
h('h2.page-subtitle', 'Account Detail'), h('h2.page-subtitle', 'Account Detail'),
]), ]),