Commit fcfadbc0 authored by isstuev's avatar isstuev Committed by tom goriunov

fix pool address truncation

parent 79b9c21d
...@@ -23,7 +23,7 @@ const PoolsTable = ({ items, page, isLoading, top }: Props) => { ...@@ -23,7 +23,7 @@ const PoolsTable = ({ items, page, isLoading, top }: Props) => {
<Tr> <Tr>
<Th width="70%">Pool</Th> <Th width="70%">Pool</Th>
<Th width="30%">DEX </Th> <Th width="30%">DEX </Th>
<Th width="120px" isNumeric> <Th width="130px" isNumeric>
<Flex alignItems="center" justifyContent="end"> <Flex alignItems="center" justifyContent="end">
FDV FDV
<Hint <Hint
...@@ -33,8 +33,8 @@ const PoolsTable = ({ items, page, isLoading, top }: Props) => { ...@@ -33,8 +33,8 @@ const PoolsTable = ({ items, page, isLoading, top }: Props) => {
/> />
</Flex> </Flex>
</Th> </Th>
<Th width="120px" isNumeric>Market cap</Th> <Th width="130px" isNumeric>Market cap</Th>
<Th width="120px" isNumeric>Liquidity</Th> <Th width="130px" isNumeric>Liquidity</Th>
<Th width="75px" isNumeric>View in</Th> <Th width="75px" isNumeric>View in</Th>
</Tr> </Tr>
</Thead> </Thead>
......
...@@ -33,7 +33,12 @@ const PoolsTableItem = ({ ...@@ -33,7 +33,12 @@ const PoolsTableItem = ({
</Skeleton> </Skeleton>
<Box> <Box>
<PoolEntity pool={ item } fontWeight={ 700 } mb={ 2 } isLoading={ isLoading }/> <PoolEntity pool={ item } fontWeight={ 700 } mb={ 2 } isLoading={ isLoading }/>
<AddressEntity address={{ hash: item.contract_address }} noIcon isLoading={ isLoading }/> <AddressEntity
address={{ hash: item.contract_address }}
noIcon
isLoading={ isLoading }
truncation="constant_long"
/>
</Box> </Box>
</Flex> </Flex>
</Td> </Td>
......
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