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++) {