mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-13 09:41:57 +00:00
fix: vision prop 初始化时有依赖已初始化的 prop,需要实时添加
This commit is contained in:
parent
20fcfe6b29
commit
1feb46f05f
@ -120,7 +120,11 @@ designer.addPropsReducer((props, node) => {
|
||||
newProps[item.name] = props[item.name];
|
||||
}
|
||||
}
|
||||
if (newProps[item.name] && !node.props.has(item.name)) {
|
||||
node.props.add(newProps[item.name], item.name);
|
||||
}
|
||||
});
|
||||
|
||||
return newProps;
|
||||
}
|
||||
return props;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user