Include unpacked emojis in emoji picker
This commit is contained in:
parent
da7d24b5c2
commit
876e51603a
3 changed files with 37 additions and 6 deletions
|
|
@ -287,7 +287,11 @@ const EmojiPicker = {
|
|||
return 0
|
||||
},
|
||||
allCustomGroups () {
|
||||
return this.$store.getters.groupedCustomEmojis
|
||||
const emojis = this.$store.getters.groupedCustomEmojis
|
||||
if (emojis.unpacked) {
|
||||
emojis.unpacked.text = this.$t('emoji.unpacked')
|
||||
}
|
||||
return emojis
|
||||
},
|
||||
defaultGroup () {
|
||||
return Object.keys(this.allCustomGroups)[0]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue