diff --git a/src/enhanced-textarea.jsx b/src/enhanced-textarea.jsx index 3a9a47e3914706..27c47d9743a0e6 100644 --- a/src/enhanced-textarea.jsx +++ b/src/enhanced-textarea.jsx @@ -120,6 +120,8 @@ const EnhancedTextarea = React.createClass({ newHeight = Math.min(this.props.rowsMax * rowsHeight, newHeight); } + newHeight = Math.max(newHeight, rowsHeight); + if (this.state.height !== newHeight) { this.setState({ height: newHeight,