1. showing recent list even though frequent list is empty

This commit is contained in:
Tenzin Samten 2021-06-27 13:42:45 +05:30
parent 33b0737955
commit 7f3a64f98a

View file

@ -1664,6 +1664,9 @@ export default {
updateRecentEmojis() {
if (this.$refs.emojiPicker) {
this.recentEmojis = this.$refs.emojiPicker.mapEmojis["Frequently"];
if (this.recentEmojis.length < 20){
this.recentEmojis.push(this.$refs.emojiPicker.mapEmojis["Peoples"]);
}
return;
}
this.recentEmojis = [];