Skip to content

Commit

Permalink
Removed rogue console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
victorgarciaesgi committed Mar 24, 2022
1 parent 683e515 commit c408dca
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-chart-3",
"version": "3.1.7",
"version": "3.1.8",
"description": "📊 A simple wrapper around Chart.js 3 for Vue 2 & 3",
"license": "MIT",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/core/component.builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export const defineChartComponent = <TType extends ChartType = ChartType>(
watch(
() => props.options,
(newOptions) => {
console.log(newOptions, chartInstance.value?.options, chartInstance.value?.options);
if (chartInstance.value && newOptions) {
chartInstance.value.options = cloneDeep(newOptions) as any;
handleChartUpdate();
Expand Down

0 comments on commit c408dca

Please sign in to comment.