Skip to content
Snippets Groups Projects
Commit b79eed01 authored by syuilo's avatar syuilo
Browse files

絵文字ピッカーの検索に絵文字をペーストしたとき確定されないのを修正

parent 3a7dbe97
No related branches found
No related tags found
No related merge requests found
......@@ -310,7 +310,7 @@ export default defineComponent({
this.chosen(exactMatchCustom);
return true;
}
const exactMatchUnicode = this.emojilist.find(e => e.name === q);
const exactMatchUnicode = this.emojilist.find(e => e.char === q || e.name === q);
if (exactMatchUnicode) {
this.chosen(exactMatchUnicode);
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment