diff --git a/client/src/app-components/password-recovery.js b/client/src/app-components/password-recovery.js index 60ec0489..d7bf80d0 100644 --- a/client/src/app-components/password-recovery.js +++ b/client/src/app-components/password-recovery.js @@ -25,9 +25,14 @@ class PasswordRecovery extends React.Component { }; render() { - const { renderLogo, formProps, onBackToLoginClick } = this.props; + const { + renderLogo, + formProps, + onBackToLoginClick, + style + } = this.props; return ( - + {this.renderLogo()}
diff --git a/client/src/core-components/form-field.js b/client/src/core-components/form-field.js index f8ae8a6b..f8d3302c 100644 --- a/client/src/core-components/form-field.js +++ b/client/src/core-components/form-field.js @@ -16,7 +16,7 @@ class FormField extends React.Component { }; static propTypes = { - decorator: React.PropTypes.oneOfType(React.PropTypes.func, React.PropTypes.string), + decorator: React.PropTypes.oneOfType([React.PropTypes.func, React.PropTypes.string]), validation: React.PropTypes.string, onChange: React.PropTypes.func, onBlur: React.PropTypes.func, diff --git a/client/src/core-components/input.js b/client/src/core-components/input.js index 1b5301bf..e33543a7 100644 --- a/client/src/core-components/input.js +++ b/client/src/core-components/input.js @@ -23,7 +23,8 @@ class Input extends React.Component { }; static defaultProps = { - size: 'small' + size: 'small', + value: '' }; render() {