Merge pull request #5301 from dataease/pr@dev@fix_filter

fix: 过滤器无法设置多个视图字段
This commit is contained in:
fit2cloud-chenyw 2023-05-24 17:50:52 +08:00 committed by GitHub
commit e5aea4df89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -470,7 +470,7 @@ export default {
const stack = [...list]
while (stack.length) {
const item = stack.pop()
if (item.id === fieldId) {
if (fieldId.includes(item.id)) {
fieldValid = true
break
}