mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-09 11:41:30 -07:00
[client] Fix user autocomplete not disappearing
This commit is contained in:
parent
ef14e0221b
commit
b335fda4b0
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ import getCaretCoordinates from "textarea-caret";
|
|||
import { toASCII } from "punycode/";
|
||||
import { popup } from "@/os";
|
||||
|
||||
const mentionRegex = /@(?<user>[a-zA-Z0-9_]+|$)@?(?<host>[a-zA-Z0-9-.]+)?/g;
|
||||
const mentionRegex = /@(?<user>[a-zA-Z0-9_]+|$)@?(?<host>[a-zA-Z0-9-.]+)?$/g;
|
||||
|
||||
export class Autocomplete {
|
||||
private suggestion: {
|
||||
|
|
Loading…
Reference in a new issue