fix bug on "no trades yet" screen w/o "Compare"
This commit is contained in:
parent
ec9b96ff70
commit
65b4a05639
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ function ItemTradesTable({
|
|||
{!loading && trades.length === 0 && (
|
||||
<Box as="tr">
|
||||
<ItemTradesTableCell
|
||||
colSpan="4"
|
||||
colSpan={shouldShowCompareColumn ? 4 : 3}
|
||||
textAlign="center"
|
||||
fontStyle="italic"
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue