fix:解决事件动作面板卡死问题 (#9099)

This commit is contained in:
hsm-lv 2023-12-11 15:37:46 +08:00 committed by GitHub
parent 460068aa69
commit 23254e1440
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -445,7 +445,17 @@ export class EventControl extends React.Component<
...item,
actionType: config
}
: config
: Object.defineProperties(config, {
__cmptTreeSource: {
enumerable: false
},
__nodeSchema: {
enumerable: false
},
__subActions: {
enumerable: false
}
})
: item;
})
};