mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
絵文字ピッカーの検索に絵文字をペーストしたとき確定されないのを修正
This commit is contained in:
parent
08be5b9d0f
commit
ee0a8d42f5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue