check if has some completions, not if >=0

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2018-07-16 21:30:04 +01:00
parent 3000099991
commit 547e0ed52c
No known key found for this signature in database
GPG Key ID: 3F879DA5AD802A5E
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ export default class MessageComposerInput extends React.Component {
// 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
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 &&
!rangeEquals(this.state.editorState.selection, editorState.selection))
{