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 && (
|
{!loading && trades.length === 0 && (
|
||||||
<Box as="tr">
|
<Box as="tr">
|
||||||
<ItemTradesTableCell
|
<ItemTradesTableCell
|
||||||
colSpan="4"
|
colSpan={shouldShowCompareColumn ? 4 : 3}
|
||||||
textAlign="center"
|
textAlign="center"
|
||||||
fontStyle="italic"
|
fontStyle="italic"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue