Skip to content

Commit

Permalink
Merge pull request #1116 from Zadielerick/ErrorStyle
Browse files Browse the repository at this point in the history
[Text Field] Error text Styles
  • Loading branch information
hai-cea committed Jul 11, 2015
2 parents 51143de + 3521cde commit b104a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/text-field.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ let TextField = React.createClass({
let inputId = id || this._uniqueId;

let errorTextElement = this.state.errorText ? (
<div style={this.mergeAndPrefix(styles.error)}>{this.state.errorText}</div>
<div style={this.mergeAndPrefix(styles.error, errorStyle)}>{this.state.errorText}</div>
) : null;

let hintTextElement = hintText ? (
Expand Down

0 comments on commit b104a51

Please sign in to comment.