diff --git a/packages/amis/src/renderers/QuickEdit.tsx b/packages/amis/src/renderers/QuickEdit.tsx index a49680a295c3..7a6481cc5514 100644 --- a/packages/amis/src/renderers/QuickEdit.tsx +++ b/packages/amis/src/renderers/QuickEdit.tsx @@ -512,7 +512,7 @@ export const HocQuickEdit = > {render('quick-edit-form', this.buildSchema(), { value: undefined, - static: false, + defaultStatic: false, onSubmit: this.handleSubmit, onAction: this.handleAction, onChange: null, @@ -577,7 +577,8 @@ export const HocQuickEdit = mode: 'normal', value: value ?? '', onChange: this.handleFormItemChange, - ref: this.formItemRef + ref: this.formItemRef, + defaultStatic: false }); } @@ -591,7 +592,8 @@ export const HocQuickEdit = onChange: this.handleChange, formLazyChange: false, canAccessSuperData, - disabled + disabled, + defaultStatic: false }); }