diff --git a/packages/client/src/components/MkEmojiPickerDialog.vue b/packages/client/src/components/MkEmojiPickerDialog.vue index fec014e40..8bbb4bb85 100644 --- a/packages/client/src/components/MkEmojiPickerDialog.vue +++ b/packages/client/src/components/MkEmojiPickerDialog.vue @@ -65,7 +65,12 @@ function chosen(emoji: any) { } function opening() { - // picker.value?.reset(); + try { + picker.value?.reset(); + } + catch (e) { + console.error(`Something's wrong with restting the emoji picker: ${e}`) + } picker.value?.focus(); }