mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Fix trade filter
This commit is contained in:
parent
af9b64c046
commit
872cf42753
|
@ -5,7 +5,14 @@
|
|||
small
|
||||
hover
|
||||
stacked="md"
|
||||
:items="[...trades]"
|
||||
:items="
|
||||
trades.filter(
|
||||
(t) =>
|
||||
t.pair.toLowerCase().includes(filterText.toLowerCase()) ||
|
||||
t.exit_reason?.toLowerCase().includes(filterText.toLowerCase()) ||
|
||||
t.enter_tag?.toLowerCase().includes(filterText.toLowerCase()),
|
||||
)
|
||||
"
|
||||
:fields="tableFields"
|
||||
show-empty
|
||||
:empty-text="emptyText"
|
||||
|
@ -15,7 +22,6 @@
|
|||
selectable
|
||||
:select-head="false"
|
||||
select-mode="single"
|
||||
:filter="filterText"
|
||||
@row-contextmenu="handleContextMenuEvent"
|
||||
@row-clicked="onRowClicked"
|
||||
@row-selected="onRowSelected"
|
||||
|
|
Loading…
Reference in New Issue
Block a user