From 9f37d15504c12f54fdd4e4846783b759fb6ae6de Mon Sep 17 00:00:00 2001 From: ulleo Date: Wed, 4 Mar 2026 14:09:31 +0800 Subject: [PATCH] =?UTF-8?q?pref(=E4=BB=AA=E8=A1=A8=E6=9D=BF=E3=80=81?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):=20=E6=98=8E=E7=BB=86?= =?UTF-8?q?=E8=A1=A8=E8=A1=8C=E6=80=BB=E8=AE=A1=E5=B0=8F=E8=AE=A1=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../editor-style/components/table/TableTotalSelector.vue | 7 ++++++- 1 file changed, 6 insertions(+), 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 1aba7802ad..6f28044ede 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 @@ -24,7 +24,12 @@ const props = defineProps({ } }) watch( - [() => props.chart.customAttr.tableTotal, () => props.chart.xAxis, () => props.chart.yAxis], + [ + () => props.chart.customAttr.tableTotal, + () => props.chart.xAxis, + () => props.chart.yAxis, + () => props.chart.customAttr.basicStyle + ], () => { init() },