From bf798cc14b39384e37c3867cf2f0a6b98ac11dd5 Mon Sep 17 00:00:00 2001 From: Stefan <22667037+qu0b@users.noreply.github.com> Date: Thu, 18 Feb 2021 15:18:38 +0100 Subject: [PATCH] Update vue3-highcharts.js --- src/vue3-highcharts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vue3-highcharts.js b/src/vue3-highcharts.js index 7618d21..2debcba 100644 --- a/src/vue3-highcharts.js +++ b/src/vue3-highcharts.js @@ -41,7 +41,7 @@ const vueHighcharts = defineComponent({ if (options.value && Highcharts[props.type]) { watch(options, (newValue) => { if (chart.value) { - chart.value.update(newValue, props.redrawOnUpdate, props.oneToOneOnUpdate, props.animateOnUpdate); + chart.value.update(newValue, props.redrawOnUpdate, props.oneToOneUpdate, props.animateOnUpdate); emit('updated'); } }, { deep: true });