fix: lowcode component leaf dont have export prop, exec leaf.export make error

This commit is contained in:
liujuping 2022-05-06 14:55:53 +08:00 committed by LeoYuan 袁力皓
parent 03c53971df
commit 9d51dcdae3

View File

@ -238,7 +238,7 @@ export function leafWrapper(Comp: types.IBaseRenderComponent, {
const { const {
hidden = false, hidden = false,
condition = true, condition = true,
} = this.leaf?.export(TransformStage.Render) || {}; } = this.leaf?.export?.(TransformStage.Render) || {};
return { return {
nodeChildren: null, nodeChildren: null,
childrenInState: false, childrenInState: false,