From 7a8134027195a1ec693d2a142fdf852e12ba41e2 Mon Sep 17 00:00:00 2001 From: rijkvanzanten Date: Wed, 26 May 2021 22:58:30 -0400 Subject: [PATCH] Deep watch option changes --- app/src/panels/time-series/time-series.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/panels/time-series/time-series.vue b/app/src/panels/time-series/time-series.vue index b351264c83..34350cf0d4 100644 --- a/app/src/panels/time-series/time-series.vue +++ b/app/src/panels/time-series/time-series.vue @@ -33,7 +33,7 @@ export default defineComponent({ const chartEl = ref(); const chart = ref(); - watch(props.options, fetchData, { deep: true }); + watch(() => props.options, fetchData, { deep: true }); fetchData();