mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +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')
|
@Watch('availablePairs')
|
||||||
watchAvailablePairs() {
|
watchAvailablePairs() {
|
||||||
[this.pair] = this.availablePairs;
|
if (!this.availablePairs.find((pair) => pair === this.pair)) {
|
||||||
this.refresh();
|
[this.pair] = this.availablePairs;
|
||||||
|
this.refresh();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Watch(BotStoreGetters.selectedPair)
|
@Watch(BotStoreGetters.selectedPair)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user