fix: autocomplete on users being janky
This commit is contained in:
parent
fd57c7e24c
commit
6f63ff62fc
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ export class Autocomplete {
|
|||
|
||||
if (isMention && this.onlyType.includes('user')) {
|
||||
const username = text.substring(mentionIndex + 1);
|
||||
if (username !== '' && username.match(/^[a-zA-Z0-9_.]+$/)) {
|
||||
if (username !== '' && username.match(/^[a-zA-Z0-9_]+$/)) {
|
||||
this.open('user', username);
|
||||
opened = true;
|
||||
} else if (username === '') {
|
||||
|
|
Loading…
Reference in a new issue