Skip to content

Commit

Permalink
Remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
Wesley-Vos committed Jan 28, 2023
1 parent 893746e commit 6451dbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apexcharts-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ class ChartsCard extends LitElement {
}
this._apexChart = new ApexCharts(graph, layout);
this._apexChart.render();
console.log(this._apexChart);
// console.log(this._apexChart);
if (this._config.series_in_brush.length) {
const brush = this.shadowRoot.querySelector('#brush');
this._apexBrush = new ApexCharts(
Expand Down Expand Up @@ -950,7 +950,7 @@ class ChartsCard extends LitElement {
false,
TIMESERIES_TYPES.includes(this._config.chart_type) ? false : true,
);
console.log(this._apexChart)
// console.log(this._apexChart)
if (this._apexBrush) {
const newMin = start.getTime();
const newMax = this._findEndOfChart(end, false);
Expand Down

0 comments on commit 6451dbf

Please sign in to comment.