pair price display fixes

This commit is contained in:
Tim
2024-03-29 16:48:12 -04:00
parent 12aa7bec5d
commit bb1bc3d966
2 changed files with 19 additions and 10 deletions

View File

@@ -6,7 +6,7 @@
<template v-slot:item.input="{ item }">
<suspense v-if="item.order.amountIsInput">
<span>
<token-amount :addr="item.order.tokenIn" :amount="item.filled" :raw="true"/>
<token-amount :addr="item.order.tokenIn" :amount="item.filledIn" :raw="true"/>
/
<token-amount :addr="item.order.tokenIn" :amount="item.order.amount"/>
</span>
@@ -18,7 +18,7 @@
<template v-slot:item.output="{ item }">
<suspense v-if="!item.order.amountIsInput">
<span>
<token-amount :addr="item.order.tokenOut" :amount="item.filled" :raw="true"/>
<token-amount :addr="item.order.tokenOut" :amount="item.filledOut" :raw="true"/>
/
<token-amount :addr="item.order.tokenOut" :amount="item.order.amount"/>
</span>