diff --git a/frontend/src/components/input/Reactions.vue b/frontend/src/components/input/Reactions.vue index 29b5975c3..957e7cf32 100644 --- a/frontend/src/components/input/Reactions.vue +++ b/frontend/src/components/input/Reactions.vue @@ -113,7 +113,7 @@ const emojiPickerPosition = ref() function toggleEmojiPicker() { if (!showEmojiPicker.value) { - const rect = emojiPickerButtonRef.value?.getBoundingClientRect() + const rect = emojiPickerButtonRef.value?.$el?.getBoundingClientRect() const container = reactionContainerRef.value?.getBoundingClientRect() if (rect && container) { const left = rect.left - container.left + rect.width