From 4b174ae71c86a02d2432ffce960dbbd01be432cc Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Mon, 7 Apr 2025 11:24:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=A4=A7=E5=B1=8F?= =?UTF-8?q?=E5=A4=9A=E9=80=89=E6=9C=AA=E5=B1=95=E7=A4=BA=E6=89=B9=E9=87=8F?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E9=85=8D=E7=BD=AE=E9=97=AE=E9=A2=98?= 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, 3 insertions(+), 1 deletion(-) 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 3f6405140c..782e6eea41 100644 --- a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts +++ b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts @@ -925,7 +925,9 @@ export const dvMainStore = defineStore('dataVisualization', { } else { this.hiddenListStatus = !this.hiddenListStatus } - this.setBatchOptStatus(false) + if (this.dvInfo.type === 'dashboard') { + this.setBatchOptStatus(false) + } }, removeCurBatchComponentWithId(id) { for (let index = 0; index < this.curBatchOptComponents.length; index++) {