Don't show Open order mark in backtesting

This commit is contained in:
Matthias 2021-07-04 19:57:35 +02:00
parent 551e684315
commit 6f98ea1bc3

View File

@ -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">