mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-03 14:17:44 +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) {
|
||||
textAreaReadOnly.value = true;
|
||||
|
||||
function insertEmoji(ev: MouseEvent): void {
|
||||
os.openEmojiPicker(
|
||||
(ev.currentTarget ?? ev.target) as HTMLElement,
|
||||
{ asReactionPicker: false },
|
||||
|
|
Loading…
Reference in a new issue