From adcf4e209069089d48dbb5f5ad9b208fc85c684e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=98=89=E8=B1=AA?= <42510293+ziyujiahao@users.noreply.github.com> Date: Wed, 15 Apr 2026 16:50:53 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E8=B0=83=E6=95=B4=E5=9B=BE=E8=A1=A8?= =?UTF-8?q?=E8=A1=A8=E5=A4=B4=E6=A0=B7=E5=BC=8F=20(#18267)=20(#18268)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/chart/components/views/index.vue | 4 +++- 1 file changed, 3 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 e8a4362e39..28671e896e 100644 --- a/core/core-frontend/src/views/chart/components/views/index.vue +++ b/core/core-frontend/src/views/chart/components/views/index.vue @@ -1004,7 +1004,9 @@ const iconSize = computed(() => { * 保证标题容器高度最小高度不低于图标高度 */ const titleContainerMinHeight = computed(() => { - if (!titleShow.value) { + if (['picture-group', 'rich-text'].includes(element.value.innerType)) { + return '0px' + } else if (!titleShow.value) { return 16 * scale.value + 4 + 'px' } return 16 * scale.value + 'px'