Merge pull request #1161 from matrix-org/luke/fix-rte-move-selection-after-quote

Move cursor to end of editor when quoting
pull/21833/head
Luke Barnard 2017-06-29 17:34:07 +01:00 committed by GitHub
commit 25feee8507
1 changed files with 2 additions and 1 deletions

View File

@ -229,7 +229,8 @@ export default class MessageComposerInput extends React.Component {
if (this.state.isRichtextEnabled) {
contentState = Modifier.setBlockType(contentState, startSelection, 'blockquote');
}
const editorState = EditorState.push(this.state.editorState, contentState, 'insert-characters');
let editorState = EditorState.push(this.state.editorState, contentState, 'insert-characters');
editorState = EditorState.moveSelectionToEnd(editorState);
this.onEditorContentChanged(editorState);
editor.focus();
}