You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-11 20:22:36 +03:00
fix 2nd typo in one PR :(
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@@ -501,7 +501,7 @@ export default class MessageComposerInput extends React.Component {
|
|||||||
// when in autocomplete mode and selection changes hide the autocomplete.
|
// when in autocomplete mode and selection changes hide the autocomplete.
|
||||||
// Selection changes when we enter text so use a heuristic to compare documents without doing it recursively
|
// Selection changes when we enter text so use a heuristic to compare documents without doing it recursively
|
||||||
if (this.autocomplete.state.completionList.length > 0 && !this.autocomplete.state.hide &&
|
if (this.autocomplete.state.completionList.length > 0 && !this.autocomplete.state.hide &&
|
||||||
this.state.editorState.document.text !== editorState.document.text &&
|
this.state.editorState.document.text === editorState.document.text &&
|
||||||
!rangeEquals(this.state.editorState.selection, editorState.selection))
|
!rangeEquals(this.state.editorState.selection, editorState.selection))
|
||||||
{
|
{
|
||||||
this.autocomplete.hide();
|
this.autocomplete.hide();
|
||||||
|
|||||||
Reference in New Issue
Block a user