diff --git a/src/select-field.jsx b/src/select-field.jsx index d4105bbad02153..85abb0100f9ed8 100644 --- a/src/select-field.jsx +++ b/src/select-field.jsx @@ -104,6 +104,7 @@ let SelectField = React.createClass({ floatingLabelText, hintText, fullWidth, + errorText, ...other, } = this.props; @@ -112,6 +113,7 @@ let SelectField = React.createClass({ floatingLabelText: floatingLabelText, hintText: (!hintText && !floatingLabelText) ? ' ' : hintText, fullWidth: fullWidth, + errorText: errorText, }; let dropDownMenuProps = { onChange: this.onChange,