mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
Don't flip pair back to first pair in whitelist automatically
This commit is contained in:
parent
ee06a542bb
commit
aa1b881072
|
@ -159,8 +159,10 @@ export default class CandleChartContainer extends Vue {
|
|||
|
||||
@Watch('availablePairs')
|
||||
watchAvailablePairs() {
|
||||
[this.pair] = this.availablePairs;
|
||||
this.refresh();
|
||||
if (!this.availablePairs.find((pair) => pair === this.pair)) {
|
||||
[this.pair] = this.availablePairs;
|
||||
this.refresh();
|
||||
}
|
||||
}
|
||||
|
||||
@Watch(BotStoreGetters.selectedPair)
|
||||
|
|
Loading…
Reference in New Issue
Block a user