Reset textarea height when press submit key (#2681)
* Reset textarea height when press submit key * dry * DON'T NEED props
This commit is contained in:
parent
302c0d2046
commit
46943b64c6
2 changed files with 6 additions and 3 deletions
|
@ -44,12 +44,12 @@ class ComposeForm extends React.PureComponent {
|
|||
|
||||
handleKeyDown (e) {
|
||||
if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) {
|
||||
this.props.onSubmit();
|
||||
this.handleSubmit();
|
||||
}
|
||||
}
|
||||
|
||||
handleSubmit () {
|
||||
this.autosuggestTextarea.textarea.style.height = "auto";
|
||||
this.autosuggestTextarea.reset();
|
||||
this.props.onSubmit();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue