summaryrefslogtreecommitdiff
path: root/packages/client/src/components
diff options
context:
space:
mode:
authorKagami Sascha Rosylight <saschanaz@outlook.com>2022-12-19 09:00:45 +0900
committerGitHub <noreply@github.com>2022-12-19 09:00:45 +0900
commit2c9a3f643c5b206892b3856fdfd1f54c7ca58e95 (patch)
tree9d57bf2a41893aa590ac97ba15cfd321f0fe0235 /packages/client/src/components
parentFix peers API returning suspended instances (#9348) (diff)
downloadsharkey-2c9a3f643c5b206892b3856fdfd1f54c7ca58e95.tar.gz
sharkey-2c9a3f643c5b206892b3856fdfd1f54c7ca58e95.tar.bz2
sharkey-2c9a3f643c5b206892b3856fdfd1f54c7ca58e95.zip
enhance(client): case insensitive emoji search (#9346)
Diffstat (limited to 'packages/client/src/components')
-rw-r--r--packages/client/src/components/MkEmojiPicker.vue2
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;