Don't log in proitSymbol

This commit is contained in:
Matthias 2020-09-07 19:49:02 +02:00
parent 7326f3f3c2
commit b9dc102765

View File

@ -13,9 +13,7 @@ export default class ProfitSymbol extends Vue {
@Prop({ required: true }) trade!: Trade;
get isProfitable() {
console.log(this.trade);
const res = (this.trade.close_profit ?? 0) > 0 || (this.trade.current_profit ?? 0) > 0;
console.log(res);
return res;
}
}