diff options
| author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2022-12-19 09:00:45 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-19 09:00:45 +0900 |
| commit | 2c9a3f643c5b206892b3856fdfd1f54c7ca58e95 (patch) | |
| tree | 9d57bf2a41893aa590ac97ba15cfd321f0fe0235 | |
| parent | Fix peers API returning suspended instances (#9348) (diff) | |
| download | sharkey-2c9a3f643c5b206892b3856fdfd1f54c7ca58e95.tar.gz sharkey-2c9a3f643c5b206892b3856fdfd1f54c7ca58e95.tar.bz2 sharkey-2c9a3f643c5b206892b3856fdfd1f54c7ca58e95.zip | |
enhance(client): case insensitive emoji search (#9346)
| -rw-r--r-- | packages/client/src/components/MkEmojiPicker.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/components/MkEmojiPicker.vue b/packages/client/src/components/MkEmojiPicker.vue index 3de0afbf50..3dc90ce545 100644 --- a/packages/client/src/components/MkEmojiPicker.vue +++ b/packages/client/src/components/MkEmojiPicker.vue @@ -135,7 +135,7 @@ watch(q, () => { return; } - const newQ = q.value.replace(/:/g, ''); + const newQ = q.value.replace(/:/g, '').toLowerCase(); const searchCustom = () => { const max = 8; |