fix: disabled static 失效问题

This commit is contained in:
allenve 2023-06-29 10:06:00 +08:00
parent 3da60c91e2
commit 3e3bfdb45d

View File

@ -1406,7 +1406,7 @@ export function chainEvents(props: any, schema: any) {
ret[key] = chainFunctions(schema[key], props[key]);
}
} else {
ret[key] = props[key];
ret[key] = props[key] ?? schema[key];
}
});