From 9ceb361fb91aa27181c3d630292abee6555a9d77 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Tue, 24 Oct 2023 17:03:03 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E8=A7=86=E5=9B=BE=E6=94=BE?= =?UTF-8?q?=E5=A4=A7=E9=9A=90=E8=97=8F=E6=A0=87=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/chart/components/views/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/chart/components/views/index.vue b/core/core-frontend/src/views/chart/components/views/index.vue index abb47d9833..ca58eec789 100644 --- a/core/core-frontend/src/views/chart/components/views/index.vue +++ b/core/core-frontend/src/views/chart/components/views/index.vue @@ -94,7 +94,12 @@ const props = defineProps({ const dynamicAreaId = ref('') const { view, showPosition, element, active, searchCount } = toRefs(props) -const titleShow = computed(() => element.value.innerType !== 'rich-text' && state.title_show) +const titleShow = computed( + () => + element.value.innerType !== 'rich-text' && + state.title_show && + showPosition.value !== 'viewDialog' +) const snapshotStore = snapshotStoreWithOut()