Show first four characters of account after 0x in wallet

feature/default_network_editable
Whymarrh Whitby 6 years ago
parent 45faf3d558
commit 71d64e74a5
  1. 2
      ui/app/components/wallet-view.js

@ -175,7 +175,7 @@ WalletView.prototype.render = function () {
this.setState({ copyToClipboardPressed: false }) this.setState({ copyToClipboardPressed: false })
}, },
}, [ }, [
`${checksummedAddress.slice(0, 4)}...${checksummedAddress.slice(-4)}`, `${checksummedAddress.slice(0, 6)}...${checksummedAddress.slice(-4)}`,
h('i.fa.fa-clipboard', { style: { marginLeft: '8px' } }), h('i.fa.fa-clipboard', { style: { marginLeft: '8px' } }),
]), ]),
]), ]),

Loading…
Cancel
Save