From 2e8a26601966eb3df98cfe178e491c606bd4cb8a Mon Sep 17 00:00:00 2001 From: Ibuki Sugiyama Date: Sun, 5 Nov 2023 21:02:47 +0900 Subject: [PATCH] enhance: increase emoji picker search results Co-authored-by: naskya Signed-off-by: limepotato --- packages/client/src/components/MkEmojiPicker.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/components/MkEmojiPicker.vue b/packages/client/src/components/MkEmojiPicker.vue index 447017154..a9dac3cae 100644 --- a/packages/client/src/components/MkEmojiPicker.vue +++ b/packages/client/src/components/MkEmojiPicker.vue @@ -256,7 +256,7 @@ watch(q, () => { const newQ = q.value.replace(/:/g, "").toLowerCase(); const searchCustom = () => { - const max = 16; + const max = 100; const emojis = customEmojis; const matches = new Set();