mirror of
https://github.com/dataease/dataease.git
synced 2025-02-25 20:20:04 +08:00
Merge pull request #12004 from dataease/pr@dev-v2@perf_threshold_senior
perf(仪表板): 阈值告警-部分类型图表在高级选项缺少阈值告警入口
This commit is contained in:
commit
bd02273a34
@ -173,8 +173,11 @@ const SENIOR_PROP: EditorProperty[] = [
|
||||
'linkage',
|
||||
'bubble-animate'
|
||||
]
|
||||
const excludeTypeList = ['chart-mix', 'chart-mix-stack', 'chart-mix-group']
|
||||
const noSenior = computed(() => {
|
||||
return !includesAny(properties.value, ...SENIOR_PROP)
|
||||
return (
|
||||
!includesAny(properties.value, ...SENIOR_PROP) && excludeTypeList.includes(chart.value.type)
|
||||
)
|
||||
})
|
||||
|
||||
const linkJumpActiveChange = () => {
|
||||
|
Loading…
Reference in New Issue
Block a user