Commit 9ebaacb4 authored by tom goriunov's avatar tom goriunov Committed by GitHub

Address doesn't fit in a column on Transaction details 'State' tab (#1326)

Fixes #1322
parent 49f9aa3a
......@@ -111,7 +111,7 @@ const TokenTransferTableItem = ({
/>
</Td>
<Td isNumeric verticalAlign="top">
<Skeleton isLoaded={ !isLoading } display="inline-block" my="7px">
<Skeleton isLoaded={ !isLoading } display="inline-block" my="7px" wordBreak="break-all">
{ 'value' in total && BigNumber(total.value).div(BigNumber(10 ** Number(total.decimals))).dp(8).toFormat() }
</Skeleton>
</Td>
......
......@@ -23,7 +23,7 @@ const TxStateTable = ({ data, isLoading, top }: Props) => {
<Thead top={ top }>
<Tr>
<Th width="140px">Type</Th>
<Th width="146px">Address</Th>
<Th width="160px">Address</Th>
<Th width="33%" isNumeric>Before</Th>
<Th width="33%" isNumeric>After</Th>
<Th width="33%" isNumeric>Change</Th>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment