|
|
@ -40,10 +40,19 @@ export const AddressActionsNonBasiliskModeRender = function(address, type) { |
|
|
|
}; |
|
|
|
|
|
|
|
export const AddressItemRender = function(address, type) { |
|
|
|
const _isBarterDexAddress = address.address[0] === 'b' ? true : false; |
|
|
|
//fa-ban
|
|
|
|
return ( |
|
|
|
<tr key={ address.address }> |
|
|
|
{ this.renderAddressActions(address.address, type) } |
|
|
|
<td>{ type === 'public' ? address.address : `${address.address.substring(0, 34)}...` }</td> |
|
|
|
<td> |
|
|
|
{ type === 'public' ? address.address : `${address.address.substring(0, 34)}...` } |
|
|
|
{ _isBarterDexAddress && |
|
|
|
<i |
|
|
|
title="BarterDex address, you don't own its priv key" |
|
|
|
className="fa fa-ban margin-left-10"></i> |
|
|
|
} |
|
|
|
</td> |
|
|
|
<td>{ address.amount }</td> |
|
|
|
</tr> |
|
|
|
); |
|
|
|