Browse Source

Merge branch 'master' into feature-send

master
Gaëtan Renaudeau 7 years ago
committed by GitHub
parent
commit
615a5e9ce6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/components/OperationsList/Operation.js

4
src/components/OperationsList/Operation.js

@ -49,6 +49,10 @@ const OperationRaw = styled(Box).attrs({
`
const Address = ({ value }: { value: string }) => {
if (!value) {
return <Box />
}
const addrSize = value.length / 2
const left = value.slice(0, 10)

Loading…
Cancel
Save