From f00048ea0d3ac5990e8b240ea25baa356ff89362 Mon Sep 17 00:00:00 2001 From: wisonic Date: Tue, 23 Jul 2024 17:47:58 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E9=80=8F=E8=A7=86?= =?UTF-8?q?=E8=A1=A8=E5=88=87=E6=8D=A2=E6=97=B6=E6=B1=87=E6=80=BB=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E9=85=8D=E7=BD=AE=E6=9C=AA=E5=88=B7=E6=96=B0=20#11024?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../editor/editor-style/components/table/TableTotalSelector.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() },