1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-20 16:22:28 +03:00

Merge pull request #2968 from npny/npny/autocomplete-prevent-send-on-enter

Hide autocomplete on Enter key press instead of sending message
This commit is contained in:
Bruno Windels
2019-05-28 09:17:28 +00:00
committed by GitHub

View File

@@ -988,6 +988,12 @@ export default class MessageComposerInput extends React.Component {
return change.insertText('\n'); return change.insertText('\n');
} }
if (this.autocomplete.countCompletions() > 0) {
this.autocomplete.hide();
ev.preventDefault();
return true;
}
const editorState = this.state.editorState; const editorState = this.state.editorState;
const lastBlock = editorState.blocks.last(); const lastBlock = editorState.blocks.last();