Merge pull request #9908 from dataease/pr@dev-v2_st

fix(仪表板): 仪表板过滤报错
This commit is contained in:
dataeaseShu 2024-05-28 14:06:59 +08:00 committed by GitHub
commit 8739ac2d99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,8 +28,8 @@ const svgDashinePath = computed(() => {
})
const init = expressionTree => {
const { logic: lg = 'or', items } = expressionTree
logic.value = lg
const { items } = expressionTree
logic.value = expressionTree.logic || 'or'
relationList.value = dfsInit(items || [])
}
const submit = () => {