Don't show emoji chooser unless entered search text is 3+ characters
This commit is contained in:
parent
983713003d
commit
52ceb40d16
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ export class EmojiCompletion {
|
|||
}
|
||||
}
|
||||
|
||||
if (leftTokenText.length < 2) {
|
||||
if (leftTokenText.length < 3) {
|
||||
this.reset();
|
||||
return PASS_THROUGH;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue