Merge remote-tracking branch 'baidu/master'

This commit is contained in:
2betop 2020-05-08 19:43:07 +08:00
commit e4d485f29b

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