Commit 41f1fbb9 authored by tom's avatar tom

remove "-"

parent 60a8519f
...@@ -19,7 +19,7 @@ const TxStateTableItem = ({ data }: Props) => { ...@@ -19,7 +19,7 @@ const TxStateTableItem = ({ data }: Props) => {
return ( return (
<Tr> <Tr>
<Td lineHeight="30px"> <Td lineHeight="30px">
{ tag || '-' } { tag }
</Td> </Td>
<Td> <Td>
<Address height="30px"> <Address height="30px">
...@@ -30,7 +30,7 @@ const TxStateTableItem = ({ data }: Props) => { ...@@ -30,7 +30,7 @@ const TxStateTableItem = ({ data }: Props) => {
<Td isNumeric lineHeight="30px">{ before }</Td> <Td isNumeric lineHeight="30px">{ before }</Td>
<Td isNumeric lineHeight="30px">{ after }</Td> <Td isNumeric lineHeight="30px">{ after }</Td>
<Td isNumeric lineHeight="30px"> { change } </Td> <Td isNumeric lineHeight="30px"> { change } </Td>
<Td lineHeight="30px">{ tokenId || '-' }</Td> <Td lineHeight="30px">{ tokenId }</Td>
</Tr> </Tr>
); );
}; };
......
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