diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/table/TableTotalSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/table/TableTotalSelector.vue index 76eb56da9e..815b724c23 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/table/TableTotalSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/table/TableTotalSelector.vue @@ -20,7 +20,7 @@ const props = defineProps({ } }) watch( - [props.chart.customAttr.tableTotal, props.chart.yAxis], + [() => props.chart.customAttr.tableTotal, () => props.chart.yAxis], () => { init() },