chore: fix typo (#2681)

Signed-off-by: cuithon <dscs@outlook.com>
pull/2683/head
cuithon 2024-03-12 15:58:20 +08:00 zatwierdzone przez GitHub
rodzic bc30a8bd82
commit 5a9546ec0a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -138,7 +138,7 @@ const characterCount = computed(() => {
length -= fullMatch.length - (before + username).length - 1 // - 1 for the @
if (draft.value.mentions) {
// + 1 is needed as mentions always need a space seperator at the end
// + 1 is needed as mentions always need a space separator at the end
length += draft.value.mentions.map((mention) => {
const [handle] = mention.split('@')
return `@${handle}`