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 a7321e4 commit dab2116Copy full SHA for dab2116
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