mirror of
https://github.com/dataease/dataease.git
synced 2026-06-17 21:08:31 +08:00
fix(数据大屏): 气泡弹窗颜色不正确
This commit is contained in:
@@ -96,7 +96,7 @@ const init = () => {
|
||||
}
|
||||
|
||||
const toolTip = computed(() => {
|
||||
return props.themes === 'dark' ? 'light' : 'dark'
|
||||
return props.themes || 'dark'
|
||||
})
|
||||
|
||||
watch(
|
||||
|
||||
@@ -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'])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user