Merge pull request #2790 from jryans/reg-form-refs

Restore `Field` value getter for `RegistrationForm`
pull/21833/head
J. Ryan Stinnett 2019-03-14 13:04:20 +00:00 committed by GitHub
commit b29aa3d13d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -53,6 +53,12 @@ export default class Field extends React.PureComponent {
};
}
/* TODO: Remove this once `RegistrationForm` no longer uses refs */
get value() {
if (!this.refs.fieldInput) return null;
return this.refs.fieldInput.value;
}
onChange = (ev) => {
if (this.props.onValidate) {
const result = this.props.onValidate(ev.target.value);