diff options
Merge branch 'master' into i18n
Diffstat (limited to 'ui/app/components/account-menu')
-rw-r--r-- | ui/app/components/account-menu/index.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/ui/app/components/account-menu/index.js b/ui/app/components/account-menu/index.js index d9cf8cdce..043e3d8d1 100644 --- a/ui/app/components/account-menu/index.js +++ b/ui/app/components/account-menu/index.js @@ -81,12 +81,12 @@ AccountMenu.prototype.render = function () { h(Divider), h(Item, { onClick: () => showNewAccountPage('CREATE'), - icon: h('img', { src: 'images/plus-btn-white.svg' }), + icon: h('img.account-menu__item-icon', { src: 'images/plus-btn-white.svg' }), text: t('createAccount'), }), h(Item, { onClick: () => showNewAccountPage('IMPORT'), - icon: h('img', { src: 'images/import-account.svg' }), + icon: h('img.account-menu__item-icon', { src: 'images/import-account.svg' }), text: t('importAccount'), }), h(Divider), @@ -99,6 +99,13 @@ AccountMenu.prototype.render = function () { onClick: showConfigPage, icon: h('img', { src: 'images/settings.svg' }), text: t('settings'), + icon: h('img.account-menu__item-icon', { src: 'images/mm-info-icon.svg' }), + text: t('infoHelp'), + }), + h(Item, { + onClick: showConfigPage, + icon: h('img.account-menu__item-icon', { src: 'images/settings.svg' }), + text: t('settings'), }), ]) } |