Add ft-order-tag to trade-detail view

This commit is contained in:
Matthias 2024-01-30 06:34:21 +01:00
parent 2d3479249a
commit 1b6e654a08
2 changed files with 3 additions and 0 deletions

View File

@ -123,6 +123,7 @@
>{{ formatPrice(order.remaining, 8) }} /
</span>
<span title="Filled">{{ formatPrice(order.filled ?? 0, 8) }}</span>
<template v-if="order.ft_order_tag"> | {{ order.ft_order_tag ?? '' }}</template>
</span>
</div>
</details>

View File

@ -19,6 +19,8 @@ export interface Order extends BTOrder {
is_open: boolean;
order_timestamp?: number;
ft_fee_base?: number;
/** Tag assigned to this order */
ft_order_tag?: string;
}
interface TradeBase {