fix display issue in order book flip
This commit is contained in:
parent
eb42f877fd
commit
bdbc9f2822
|
@ -258,10 +258,10 @@ export default function Orderbook({ depth = 8 }) {
|
||||||
<MarkPriceComponent markPrice={markPrice} />
|
<MarkPriceComponent markPrice={markPrice} />
|
||||||
<div className={`text-th-fgd-4 flex justify-between mb-2`}>
|
<div className={`text-th-fgd-4 flex justify-between mb-2`}>
|
||||||
<div className={`text-left text-xs`}>
|
<div className={`text-left text-xs`}>
|
||||||
Size ({baseCurrency})
|
Size ({marketConfig.baseSymbol})
|
||||||
</div>
|
</div>
|
||||||
<div className={`text-right text-xs`}>
|
<div className={`text-right text-xs`}>
|
||||||
Price ({quoteCurrency})
|
Price ({groupConfig.quoteSymbol})
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{orderbookData?.asks.map(({ price, size, sizePercent }) => (
|
{orderbookData?.asks.map(({ price, size, sizePercent }) => (
|
||||||
|
|
Loading…
Reference in New Issue