Fix bug where UserInfoForm wasn't included
This commit is contained in:
parent
4c5b997d65
commit
18d43b6258
1 changed files with 2 additions and 1 deletions
|
@ -6,6 +6,7 @@ import {Field} from "mobx-react-form";
|
|||
import {computed} from 'mobx';
|
||||
import {WizardPanel, WizardTabPanelProps} from "../common/wizard/WizardPanel";
|
||||
import {WizardTabPanelState} from "../common/wizard/wizard_state";
|
||||
import UserInfoForm from "./UserInfoForm";
|
||||
|
||||
export interface UserInfoPanelProps extends WizardTabPanelProps {
|
||||
buttonText: string
|
||||
|
@ -40,7 +41,7 @@ class UserInfoPanel extends React.Component<UserInfoPanelProps & InjectedIntlPro
|
|||
return <WizardPanel
|
||||
tab={this.wizardTab} key={this.wizardTab.tabName}
|
||||
>
|
||||
|
||||
<UserInfoForm form={this.form} buttonText={this.props.buttonText}/>
|
||||
|
||||
</WizardPanel>;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue