fix blinking popup
This commit is contained in:
parent
2469415809
commit
518fcf856a
1 changed files with 3 additions and 1 deletions
|
@ -258,7 +258,9 @@ const EmojiInput = {
|
|||
textAtCaret: async function (newWord) {
|
||||
const firstchar = newWord.charAt(0)
|
||||
if (newWord === firstchar) {
|
||||
this.suggestions = []
|
||||
if (firstchar === ' ') {
|
||||
this.suggestions = []
|
||||
}
|
||||
return
|
||||
}
|
||||
const matchedSuggestions = await this.suggest(newWord, this.maybeLocalizedEmojiNamesAndKeywords)
|
||||
|
|
Loading…
Reference in a new issue