fix blinking popup

このコミットが含まれているのは:
Henry Jameson 2022-10-09 23:09:31 +03:00
コミット 518fcf856a
1個のファイルの変更3行の追加1行の削除

ファイルの表示

@ -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)