Merge remote-tracking branch 'baidu/master'

This commit is contained in:
2betop 2020-05-08 19:43:07 +08:00
commit 5ced9c0b72
1 changed files with 1 additions and 1 deletions

View File

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