mirror of
https://github.com/dataease/dataease.git
synced 2026-05-16 14:31:00 +08:00
fix(图表): 修复图表设置颜色相关属性时点击非图表组件调色板可能偏移到左上角没有关闭问题
This commit is contained in:
@@ -271,7 +271,11 @@ const getFields = (id, chartId, type) => {
|
||||
}
|
||||
|
||||
const chartStyleShow = computed(() => {
|
||||
return view.value.type !== 'richText'
|
||||
return (
|
||||
view.value.type !== 'richText' &&
|
||||
curComponent.value &&
|
||||
curComponent.value.component === 'UserView'
|
||||
)
|
||||
})
|
||||
|
||||
const chartViewInstance = computed(() => {
|
||||
|
||||
Reference in New Issue
Block a user