Skip to content

Commit

Permalink
remove 'console.log' comments
Browse files Browse the repository at this point in the history
  • Loading branch information
techCarpenter committed Jul 12, 2021
1 parent 05c2a6d commit f369c8e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/components/ReactiveChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,13 @@ export default defineComponent({
props.chart.layout,
props.chart.config
);
// console.log("Plot created from:", props.chart);
} catch (err) {
console.error("Reactive Chart Error:", err);
}
});
let unwatchChart = watch(
() => props.chart,
(newChart, oldChart) => {
// console.log("Old chart:", oldChart);
// console.log("New chart:", newChart);
Plotly.react(
"plotly-" + newChart.uuid,
newChart.traces,
Expand Down

0 comments on commit f369c8e

Please sign in to comment.