Skip to content

Commit

Permalink
Merge pull request #1767 from bgribben/text-field-hint-style-property
Browse files Browse the repository at this point in the history
[TextField] Removed direct hintStyle prop ref
  • Loading branch information
shaurya947 committed Sep 30, 2015
2 parents 03319fe + 82ebc08 commit 6e7d4d3
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 @@ -304,7 +304,7 @@ const TextField = React.createClass({
) : null;

let hintTextElement = hintText ? (
<div style={this.mergeAndPrefix(styles.hint, this.props.hintStyle)}>{hintText}</div>
<div style={this.mergeAndPrefix(styles.hint, hintStyle)}>{hintText}</div>
) : null;

let floatingLabelTextElement = floatingLabelText ? (
Expand Down

0 comments on commit 6e7d4d3

Please sign in to comment.