mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 18:23:50 +00:00
Don't show Open order mark in backtesting
This commit is contained in:
parent
551e684315
commit
6f98ea1bc3
|
@ -33,7 +33,11 @@
|
|||
<template #cell(pair)="row">
|
||||
<ProfitSymbol :trade="row.item" />
|
||||
<span>
|
||||
{{ `${row.item.pair}${row.item.open_order_id === null ? '' : '*'}` }}
|
||||
{{
|
||||
`${row.item.pair}${
|
||||
row.item.open_order_id === undefined || row.item.open_order_id === null ? '' : '*'
|
||||
}`
|
||||
}}
|
||||
</span>
|
||||
</template>
|
||||
<template #cell(open_timestamp)="row">
|
||||
|
|
Loading…
Reference in New Issue
Block a user