Remove pointless verbosity

This commit is contained in:
Matthias 2020-11-10 17:52:17 +01:00
parent dd26894b61
commit fe597833f7

View File

@ -104,7 +104,7 @@ export default class CandleChart extends Vue {
const subplotCount = const subplotCount =
'subplots' in this.plotConfig ? Object.keys(this.plotConfig.subplots).length : 0; '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 // Always show ~250 candles max as starting point
const startingZoom = (1 - 250 / this.dataset.length) * 100; const startingZoom = (1 - 250 / this.dataset.length) * 100;