Merge pull request #1961 from matrix-org/dbkr/fix_devtools_exception

Fix exception when opening dev tools
pull/21833/head
David Baker 2018-06-14 09:45:19 +01:00 committed by GitHub
commit bb99950216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -244,12 +244,14 @@ export default class MessageComposerInput extends React.Component {
let editorState = null; let editorState = null;
if (contentState) { if (contentState) {
editorState = EditorState.createWithContent(contentState, compositeDecorator); editorState = EditorState.moveFocusToEnd(
EditorState.createWithContent(contentState, compositeDecorator)
);
} else { } else {
editorState = EditorState.createEmpty(compositeDecorator); editorState = EditorState.createEmpty(compositeDecorator);
} }
return EditorState.moveFocusToEnd(editorState); return editorState;
} }
componentDidMount() { componentDidMount() {