mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-26 13:05:15 +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">
|
<template #cell(pair)="row">
|
||||||
<ProfitSymbol :trade="row.item" />
|
<ProfitSymbol :trade="row.item" />
|
||||||
<span>
|
<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>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #cell(open_timestamp)="row">
|
<template #cell(open_timestamp)="row">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user