Include a ref so that get/set value works again

pull/21833/head
Travis Ralston 2019-01-23 09:29:44 -07:00
parent aa7afe819f
commit 875c0f94d3
1 changed files with 1 additions and 0 deletions

View File

@ -54,6 +54,7 @@ export default class Field extends React.PureComponent {
// Set some defaults for the element
extraProps.type = extraProps.type || "text";
extraProps.ref = "fieldInput";
const element = this.props.element || "input";
const fieldInput = React.createElement(element, extraProps, this.props.children);