1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-10-30 23:01:48 +09:00

絵文字ピッカーにフォーカスされないのを修正

This commit is contained in:
syuilo 2023-01-09 17:08:58 +09:00
parent b7dec6e87d
commit 8f28ff63f1

View File

@ -59,6 +59,11 @@ function chosen(emoji: any) {
function opening() {
picker.value?.reset();
picker.value?.focus();
//
setTimeout(() => {
picker.value?.focus();
}, 10);
}
</script>