diff options
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 7cf5c7b9d..31d11b4e0 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -253,12 +253,14 @@ App.prototype.renderAppBar = function () { }, [ h('div.app-header-contents', {}, [ h('div.left-menu-wrapper', { - style: {}, + onClick: () => { + props.dispatch(actions.backToAccountDetail(props.activeAddress)) + }, }, [ // mini logo - h('img', { - height: 24, - width: 24, + h('img.metafox-icon', { + height: 29, + width: 29, src: '/images/icon-128.png', }), |