forked from AkkomaGang/akkoma-fe
custom #1
1 changed files with 10 additions and 11 deletions
|
@ -31,7 +31,7 @@ const EmojiPicker = {
|
|||
data () {
|
||||
return {
|
||||
keyword: '',
|
||||
activeGroup: 'standard',
|
||||
activeGroup: 'recent',
|
||||
showingStickers: false,
|
||||
keepOpen: false
|
||||
}
|
||||
|
@ -110,17 +110,16 @@ const EmojiPicker = {
|
|||
replacement: '🕒',
|
||||
},
|
||||
emojis: this.filterByKeyword(recentEmojis)
|
||||
},
|
||||
{
|
||||
id: 'standard',
|
||||
text: this.$t('emoji.unicode'),
|
||||
first: {
|
||||
imageUrl: '',
|
||||
replacement: '🥴'
|
||||
},
|
||||
emojis: this.filterByKeyword(standardEmojis)
|
||||
}
|
||||
].concat(emojiPacks)
|
||||
].concat(emojiPacks).concat([{
|
||||
id: 'standard',
|
||||
text: this.$t('emoji.unicode'),
|
||||
first: {
|
||||
imageUrl: '',
|
||||
replacement: '🥴'
|
||||
},
|
||||
emojis: this.filterByKeyword(standardEmojis)
|
||||
}])
|
||||
},
|
||||
sortedEmoji () {
|
||||
const customEmojis = this.$store.state.instance.customEmoji || []
|
||||
|
|
Loading…
Reference in a new issue