mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
Fix autocompletion of Community IDs
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
4db0d94fb6
commit
c8832f5582
@ -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 New Issue
Block a user