Skip to content

Commit 58a3d01

Browse files
committed
Use uc for list
1 parent 74c218d commit 58a3d01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

draft-js-emoji-plugin/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "draft-js-emoji-bump",
3-
"version": "2.1.1-beta5",
3+
"version": "2.2.0",
44
"description": "Emoji Plugin for DraftJS",
55
"author": {
66
"name": "Nik Graf",

draft-js-emoji-plugin/src/utils/emojiList.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const newEmojiListWithOutPriorityList = (priorityList) => {
66
if (priorityList.hasOwnProperty(key)) { // eslint-disable-line no-prototype-builtins
77
continue; // eslint-disable-line no-continue
88
}
9-
list[key] = emojione.emojioneList[key].fname;
9+
list[key] = emojione.emojioneList[key].uc;
1010
}
1111

1212
return { ...priorityList, ...list };

0 commit comments

Comments
 (0)