Revert "Fix exception when opening dev tools"

This commit is contained in:
David Baker 2018-06-14 10:52:39 +01:00 committed by GitHub
parent 5804040a9b
commit 666d469222
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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