fix(ui): resource search export error

This commit is contained in:
songlh 2024-08-27 10:32:53 +08:00
parent f3b0efabb4
commit 97311b2b51
1 changed files with 1 additions and 1 deletions

View File

@ -599,7 +599,7 @@ export default {
preferenceAttrList.forEach((attr) => {
if (Array.isArray(attr?.children) && attr?.children?.length) {
attr.children = attr.filter((child) => {
attr.children = attr.children.filter((child) => {
return !child?.is_reference
})
}