mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
Merge pull request #8976 from igrowp/fix-editor-set-value
fix: Form 数据同步改为lazyEmitChange
This commit is contained in:
commit
02e3fe8c50
@ -530,7 +530,8 @@ export default class Form extends React.Component<FormProps, object> {
|
||||
reaction(
|
||||
() => store.initedAt,
|
||||
() => {
|
||||
store.inited && this.emitChange(!!this.props.submitOnChange, true);
|
||||
store.inited &&
|
||||
this.lazyEmitChange(!!this.props.submitOnChange, true);
|
||||
}
|
||||
)
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user