From 0664f6a5ae5e26e97200c153c3705d3cfe2987be Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Tue, 13 May 2025 11:39:35 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F?= =?UTF-8?q?=E3=80=81=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E4=BB=AA=E8=A1=A8?= =?UTF-8?q?=E6=9D=BF=E5=A4=96=E9=83=A8=E5=8F=82=E6=95=B0=E8=AF=B7=E6=B1=82?= =?UTF-8?q?=E5=AE=8C=E6=88=90=E5=90=8E=E7=BA=A7=E8=81=94=E6=97=B6=E4=BA=8C?= =?UTF-8?q?=E7=BA=A7=E7=BA=A7=E8=81=94=E6=9F=A5=E8=AF=A2=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E8=A2=AB=E7=AD=9B=E9=80=89=20#16059?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/store/modules/data-visualization/dvMain.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts index f56f180fa7..74a1d51c63 100644 --- a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts +++ b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts @@ -1335,8 +1335,12 @@ export const dvMainStore = defineStore('dataVisualization', { itemInner['currentSelectValue'] = Array.isArray(curDefaultValue) ? curDefaultValue : [curDefaultValue] + itemInner['selectValue'] = Array.isArray(curDefaultValue) + ? curDefaultValue + : [curDefaultValue] } else { itemInner['currentSelectValue'] = [] + itemInner['selectValue'] = [] } }) }