Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
5c9125ffde
1 changed files with 1 additions and 1 deletions
|
@ -500,7 +500,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))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue