Improve detail order output

This commit is contained in:
Matthias 2022-07-24 20:09:54 +02:00
parent 7f0715d133
commit 7e931487e1

View File

@ -94,8 +94,10 @@
/>
<b class="ml-1">{{ order.ft_order_side }}</b> for
<b>{{ formatPrice(order.safe_price) }}</b> |
<span v-if="order.remaining !== 0" title="remaining">{{ order.remaining }} / </span>
<span title="Filled">{{ order.filled }}</span>
<span v-if="order.remaining !== 0" title="remaining"
>{{ formatPrice(order.remaining, 8) }} /
</span>
<span title="Filled">{{ formatPrice(order.filled, 8) }}</span>
</span>
</div>
</details>