diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-11-07 10:56:38 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-11-07 10:56:38 +0900 |
| commit | b79eed01e0af569cfb2ab2db5dbf1f8801529c84 (patch) | |
| tree | ceb26e689175f6758fbbf3d29e9dd51d303d44f9 /src/client/components | |
| parent | UI切り替えがサイドバーに設置されていない場合に機能し... (diff) | |
| download | misskey-b79eed01e0af569cfb2ab2db5dbf1f8801529c84.tar.gz misskey-b79eed01e0af569cfb2ab2db5dbf1f8801529c84.tar.bz2 misskey-b79eed01e0af569cfb2ab2db5dbf1f8801529c84.zip | |
絵文字ピッカーの検索に絵文字をペーストしたとき確定されないのを修正
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/emoji-picker.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/emoji-picker.vue b/src/client/components/emoji-picker.vue index 12f770205d..394387c012 100644 --- a/src/client/components/emoji-picker.vue +++ b/src/client/components/emoji-picker.vue @@ -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; |