Merge pull request #4822 from whymarrh/show-more-address

Show first four characters of account after 0x
feature/default_network_editable
Whymarrh Whitby 6 years ago committed by GitHub
commit 13804d61b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      ui/app/components/selected-account/selected-account.component.js
  2. 2
      ui/app/components/wallet-view.js

@ -5,11 +5,11 @@ import copyToClipboard from 'copy-to-clipboard'
const Tooltip = require('../tooltip-v2.js')
const addressStripper = (address = '') => {
if (address.length < 4) {
if (address.length < 11) {
return address
}
return `${address.slice(0, 4)}...${address.slice(-4)}`
return `${address.slice(0, 6)}...${address.slice(-4)}`
}
class SelectedAccount extends Component {

@ -175,7 +175,7 @@ WalletView.prototype.render = function () {
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' } }),
]),
]),

Loading…
Cancel
Save