From 9fb9fd8d20a4c14c83305e721db011b6e4804531 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 25 Dec 2021 11:20:02 +0100 Subject: [PATCH] Cleanup miss-placed log message --- src/components/charts/CumProfitChart.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/charts/CumProfitChart.vue b/src/components/charts/CumProfitChart.vue index 72757c6b..6d2c86f6 100644 --- a/src/components/charts/CumProfitChart.vue +++ b/src/components/charts/CumProfitChart.vue @@ -81,7 +81,7 @@ export default class CumProfitChart extends Vue { resD[trade.close_timestamp][trade.botId] = profit; } } - console.log(trade.close_date, profit); + // console.log(trade.close_date, profit); res.push({ date: trade.close_timestamp, profit, [trade.botId]: profit }); if (!this.botList.includes(trade.botId)) { this.botList.push(trade.botId);