Skip to content

Commit

Permalink
Add "😂" to list of quick reaction emojis
Browse files Browse the repository at this point in the history
Unicode "face with tears of joy" is (one of) the most used emoji
(https://emojipedia.org/face-with-tears-of-joy), so it makes
sense to have it in the quick reaction list.

Signed-off-by: Mirian Margiani <[email protected]>
  • Loading branch information
ichthyosaurus committed Dec 2, 2024
1 parent cd02ef6 commit 09eba7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class QuickReactionsMenuOption {
this._vm = vm;
}
toDOM(t) {
const emojiButtons = ["👍", "👎", "😄", "🎉", "😕", "❤️", "🚀", "👀"].map(emoji => {
const emojiButtons = ["👍", "👎", "😂", "🎉", "😄", "😕", "❤️", "🚀", "👀"].map(emoji => {
return t.button({onClick: () => this._vm.react(emoji)}, emoji);
});
const customButton = t.button({onClick: () => {
Expand Down

0 comments on commit 09eba7d

Please sign in to comment.