Fix autocompletion of Community IDs
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
4db0d94fb6
commit
c8832f5582
1 changed files with 2 additions and 1 deletions
|
@ -186,7 +186,7 @@ abstract class PlainBasePart extends BasePart {
|
|||
}
|
||||
// when not pasting or dropping text, reject characters that should start a pill candidate
|
||||
if (inputType !== "insertFromPaste" && inputType !== "insertFromDrop") {
|
||||
return chr !== "@" && chr !== "#" && chr !== ":";
|
||||
return chr !== "@" && chr !== "#" && chr !== ":" && chr !== "+";
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
@ -463,6 +463,7 @@ export class PartCreator {
|
|||
case "#":
|
||||
case "@":
|
||||
case ":":
|
||||
case "+":
|
||||
return this.pillCandidate("");
|
||||
case "\n":
|
||||
return new NewlinePart();
|
||||
|
|
Loading…
Reference in a new issue