perf(仪表板): 阈值告警-部分类型图表在高级选项缺少阈值告警入口

This commit is contained in:
fit2cloud-chenyw 2024-09-04 15:50:18 +08:00
parent 719d99ab2e
commit 4259fdd8a3

View File

@ -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 = () => {