mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-03 23:16:28 +09:00
絵文字ピッカーにフォーカスされないのを修正
This commit is contained in:
@ -59,6 +59,11 @@ function chosen(emoji: any) {
|
||||
function opening() {
|
||||
picker.value?.reset();
|
||||
picker.value?.focus();
|
||||
|
||||
// 何故かちょっと待たないとフォーカスされない
|
||||
setTimeout(() => {
|
||||
picker.value?.focus();
|
||||
}, 10);
|
||||
}
|
||||
</script>
|
||||
|
||||
|
Reference in New Issue
Block a user