Automatically change the size of textarea (#2128)
This commit is contained in:
parent
a8e1afc30a
commit
15a4fc5dcc
2 changed files with 11 additions and 2 deletions
|
@ -63,6 +63,10 @@ const AutosuggestTextarea = React.createClass({
|
|||
this.props.onSuggestionsClearRequested();
|
||||
}
|
||||
|
||||
// auto-resize textarea
|
||||
e.target.style.height = 'auto';
|
||||
e.target.style.height = `${e.target.scrollHeight}px`;
|
||||
|
||||
this.props.onChange(e);
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue