diff --git a/core/core-frontend/src/components/data-visualization/ComponentToolBarV3.vue b/core/core-frontend/src/components/data-visualization/ComponentToolBarV3.vue index b2d0bc6bab..cad21649a0 100644 --- a/core/core-frontend/src/components/data-visualization/ComponentToolBarV3.vue +++ b/core/core-frontend/src/components/data-visualization/ComponentToolBarV3.vue @@ -137,7 +137,7 @@ onUnmounted(() => { v-model="scale" :min="10" :max="200" - tooltip-theme="ndark" + tooltip-theme="light" @change="handleScaleChange()" size="small" /> @@ -145,7 +145,7 @@ onUnmounted(() => { - + 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 1d59b9e7e4..32b341e7aa 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' ? 'ndark' : 'dark' + return props.themes === 'dark' ? 'light' : '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 424b87539f..5a405d8221 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' ? 'ndark' : 'dark' + return props.themes === 'dark' ? 'light' : 'dark' }) const emit = defineEmits(['onChangeFlowMapLineForm', 'onBasicStyleChange'])