We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74c218d commit 58a3d01Copy full SHA for 58a3d01
draft-js-emoji-plugin/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "draft-js-emoji-bump",
3
- "version": "2.1.1-beta5",
+ "version": "2.2.0",
4
"description": "Emoji Plugin for DraftJS",
5
"author": {
6
"name": "Nik Graf",
draft-js-emoji-plugin/src/utils/emojiList.js
@@ -6,7 +6,7 @@ const newEmojiListWithOutPriorityList = (priorityList) => {
if (priorityList.hasOwnProperty(key)) { // eslint-disable-line no-prototype-builtins
7
continue; // eslint-disable-line no-continue
8
}
9
- list[key] = emojione.emojioneList[key].fname;
+ list[key] = emojione.emojioneList[key].uc;
10
11
12
return { ...priorityList, ...list };
0 commit comments