エラー修正2

This commit is contained in:
GrapeApple0 2024-08-17 11:00:51 +00:00
parent 6ef8116494
commit 935da7d090
1 changed files with 1 additions and 1 deletions

View File

@ -607,7 +607,7 @@ function cancel() {
} }
function insertMention() { function insertMention() {
os.selectUser({ localOnly: localOnly.value, includeSelf: true }).then(user => { os.selectUser({ localOnly: props.initialLocalOnly ?? false, includeSelf: true }).then(user => {
insertTextAtCursor(textareaEl.value, '@' + Misskey.acct.toString(user) + ' '); insertTextAtCursor(textareaEl.value, '@' + Misskey.acct.toString(user) + ' ');
}); });
} }