We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8334055 commit 6eb5ffcCopy full SHA for 6eb5ffc
src/components/TextInput/TextInput.react.js
@@ -48,8 +48,7 @@ export default class TextInput extends React.Component {
48
id={this.props.id}
49
disabled={!!this.props.disabled}
50
className={classes.join(' ')}
51
- rows={this.props.rows && this.props.rows > 3 ? this.props.rows : null}
52
- style={this.props.rows && this.props.rows > 3 ? null : {height: this.props.height || 80}}
+ style={{height: this.props.height || 80}}
53
placeholder={this.props.placeholder}
54
value={this.props.value}
55
onChange={this.changeValue.bind(this)}
0 commit comments