Skip to content

Commit dab2116

Browse files
committed
Removed quickfix for next PR
1 parent a7321e4 commit dab2116

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/TextInput/TextInput.react.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ export default class TextInput extends React.Component {
4848
id={this.props.id}
4949
disabled={!!this.props.disabled}
5050
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}}
51+
style={{height: this.props.height || 80}}
5352
placeholder={this.props.placeholder}
5453
value={this.props.value}
5554
onChange={this.changeValue.bind(this)}

0 commit comments

Comments
 (0)