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 bac2b3e34f..11f71432c9 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()