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

Fix exception when opening dev tools
This commit is contained in:
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

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() {