Merge pull request #1963 from matrix-org/revert-1961-dbkr/fix_devtools_exception
Revert "Fix exception when opening dev tools"
This commit is contained in:
commit
2e53baaaff
1 changed files with 2 additions and 4 deletions
|
@ -244,14 +244,12 @@ export default class MessageComposerInput extends React.Component {
|
|||
|
||||
let editorState = null;
|
||||
if (contentState) {
|
||||
editorState = EditorState.moveFocusToEnd(
|
||||
EditorState.createWithContent(contentState, compositeDecorator)
|
||||
);
|
||||
editorState = EditorState.createWithContent(contentState, compositeDecorator);
|
||||
} else {
|
||||
editorState = EditorState.createEmpty(compositeDecorator);
|
||||
}
|
||||
|
||||
return editorState;
|
||||
return EditorState.moveFocusToEnd(editorState);
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
|
|
Loading…
Reference in a new issue