mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-06 03:55:40 +01:00
fix(MkPostForm): 絵文字ピッカーを開くと入力ができなくなる問題を修正 (MisskeyIO#299)
This commit is contained in:
parent
b0d9b6419c
commit
d220628510
1 changed files with 1 additions and 3 deletions
|
@ -857,9 +857,7 @@ function insertMention() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function insertEmoji(ev: MouseEvent) {
|
function insertEmoji(ev: MouseEvent): void {
|
||||||
textAreaReadOnly.value = true;
|
|
||||||
|
|
||||||
os.openEmojiPicker(
|
os.openEmojiPicker(
|
||||||
(ev.currentTarget ?? ev.target) as HTMLElement,
|
(ev.currentTarget ?? ev.target) as HTMLElement,
|
||||||
{ asReactionPicker: false },
|
{ asReactionPicker: false },
|
||||||
|
|
Loading…
Reference in a new issue