エラー修正2
This commit is contained in:
parent
6ef8116494
commit
935da7d090
|
@ -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) + ' ');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue