You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-20 16:22:28 +03:00
Fix exception when opening dev tools
Apparently draft sometimes gets unhappy when you try to move to the end of an empty state, so only move to the end if we actually created a non-empty state. This will be irrelevant once https://github.com/matrix-org/matrix-react-sdk/pull/1890 is merged, but I have the fix now, and this is probably otherwise going to annoy me now I'm doing things where devtools is very useful. Fixes https://github.com/vector-im/riot-web/issues/6436
This commit is contained in:
@@ -244,12 +244,14 @@ export default class MessageComposerInput extends React.Component {
|
||||
|
||||
let editorState = null;
|
||||
if (contentState) {
|
||||
editorState = EditorState.createWithContent(contentState, compositeDecorator);
|
||||
editorState = EditorState.moveFocusToEnd(
|
||||
EditorState.createWithContent(contentState, compositeDecorator)
|
||||
);
|
||||
} else {
|
||||
editorState = EditorState.createEmpty(compositeDecorator);
|
||||
}
|
||||
|
||||
return EditorState.moveFocusToEnd(editorState);
|
||||
return editorState;
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
|
||||
Reference in New Issue
Block a user