修复form中crud弹框crud无限循环问题
This commit is contained in:
parent
82ac17d59d
commit
d2a91d30a1
|
@ -1130,7 +1130,7 @@ export function chainEvents(props: any, schema: any) {
|
|||
) {
|
||||
ret[key] = chainFunctions(schema[key], props[key]);
|
||||
} else {
|
||||
ret[key] = props[key];
|
||||
ret[key] = schema[key] ?? props[key];
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue