diff options
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r-- | ui/app/account-detail.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index ebb15cd05..41d1ff2da 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -137,6 +137,22 @@ AccountDetailScreen.prototype.render = function () { }), h(Tooltip, { + title: 'QR Code', + }, [ + h('i.fa.fa-qrcode.pointer.pop-hover', { + onClick: () => props.dispatch(actions.showQrView(selected, identity ? identity.name : '')), + style: { + fontSize: '18px', + position: 'relative', + color: 'rgb(247, 134, 28)', + top: '5px', + marginLeft: '3px', + marginRight: '3px', + }, + }), + ]), + + h(Tooltip, { title: 'Export Private Key', }, [ h('div', { |