修复form中crud弹框crud无限循环问题

This commit is contained in:
rickcole 2020-05-07 15:25:40 +08:00
parent 82ac17d59d
commit d2a91d30a1
1 changed files with 1 additions and 1 deletions

View File

@ -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];
}
});