Skip to content

Commit

Permalink
PullRequest: 202 fixes oceanbase/odc#470,fixes oceanbase/odc#580
Browse files Browse the repository at this point in the history
Merge branch 'fix/dev-4.2.2-bugs-xyh-1025 of [email protected]:oceanbase/oceanbase-developer-center.git into dev-4.2.2

https://code.alipay.com/oceanbase/oceanbase-developer-center/pull_requests/202


Signed-off-by: 晓康 <[email protected]>


* fixes oceanbase/odc#470,fixes oceanbase/odc#580
  • Loading branch information
bluesky-xyh committed Oct 25, 2023
1 parent 648abd6 commit d84f822
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/component/Task/ImportTask/CreateModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -517,12 +517,14 @@ class CreateModal extends React.Component<IProps, IState> {
formData={formData}
projectId={projectId}
onFormValueChange={(values) => {
this.setState({
isFormChanged: true,
formData: {
...this.state.formData,
...values,
},
this.setState((state) => {
return {
isFormChanged: true,
formData: {
...state.formData,
...values,
},
};
});
}}
ref={this._formRef}
Expand Down

0 comments on commit d84f822

Please sign in to comment.