From 17d41f1ac782b63fd8035becbd8673cdc4d6257c Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 12 May 2026 15:15:18 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):=20?= =?UTF-8?q?=E6=B0=94=E6=B3=A1=E5=BC=B9=E7=AA=97=E9=A2=9C=E8=89=B2=E4=B8=8D?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../custom-component/picture-group/PictureGroupUploadAttr.vue | 2 +- .../editor/editor-style/components/FlowMapLineSelector.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/custom-component/picture-group/PictureGroupUploadAttr.vue b/core/core-frontend/src/custom-component/picture-group/PictureGroupUploadAttr.vue index 1f2c3a06ed..d5b0b536dc 100644 --- a/core/core-frontend/src/custom-component/picture-group/PictureGroupUploadAttr.vue +++ b/core/core-frontend/src/custom-component/picture-group/PictureGroupUploadAttr.vue @@ -96,7 +96,7 @@ const init = () => { } const toolTip = computed(() => { - return props.themes === 'dark' ? 'light' : 'dark' + return props.themes || 'dark' }) watch( diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue index 5a405d8221..ffd5139117 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/FlowMapLineSelector.vue @@ -35,7 +35,7 @@ const state = reactive({ basicStyleForm: {} }) const toolTip = computed(() => { - return props.themes === 'dark' ? 'light' : 'dark' + return props.themes || 'dark' }) const emit = defineEmits(['onChangeFlowMapLineForm', 'onBasicStyleChange'])