Fix wrong condition in strategylist mounted

This commit is contained in:
Matthias 2021-01-19 21:55:14 +01:00
parent 91c2f5dc6f
commit 55cb52af9a

View File

@ -63,7 +63,7 @@ export default class StrategyList extends Vue {
}
mounted() {
if (!this.strategyList) {
if (this.strategyList.length === 0) {
this.getStrategyList();
}
}