From fe597833f7100a2836b9df52c57914727efc9c92 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 10 Nov 2020 17:52:17 +0100 Subject: [PATCH] Remove pointless verbosity --- src/components/charts/CandleChart.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/charts/CandleChart.vue b/src/components/charts/CandleChart.vue index e1495217..1e199d77 100644 --- a/src/components/charts/CandleChart.vue +++ b/src/components/charts/CandleChart.vue @@ -104,7 +104,7 @@ export default class CandleChart extends Vue { const subplotCount = 'subplots' in this.plotConfig ? Object.keys(this.plotConfig.subplots).length : 0; - console.log(`subplotcount: ${subplotCount}`); + // console.log(`subplotcount: ${subplotCount}`); // Always show ~250 candles max as starting point const startingZoom = (1 - 250 / this.dataset.length) * 100;