Fix emoji picker off-by-1 error

This commit is contained in:
tusooa 2023-01-06 13:14:38 -05:00
commit 76019d1e03
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
3 changed files with 3 additions and 2 deletions

View file

@ -244,7 +244,7 @@ const EmojiPicker = {
if (!this.$refs['emoji-groups']) {
return
}
this.width = this.$refs['emoji-groups'].$el.offsetWidth
this.width = this.$refs['emoji-groups'].$el.clientWidth
})
}
},