summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'packages/frontend/src/components')
-rw-r--r--packages/frontend/src/components/MkEmojiPicker.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkEmojiPicker.vue b/packages/frontend/src/components/MkEmojiPicker.vue
index 145bce9825..87d0456931 100644
--- a/packages/frontend/src/components/MkEmojiPicker.vue
+++ b/packages/frontend/src/components/MkEmojiPicker.vue
@@ -156,7 +156,7 @@ watch(q, () => {
const newQ = q.value.replace(/:/g, '').toLowerCase();
const searchCustom = () => {
- const max = 8;
+ const max = 100;
const emojis = customEmojis.value;
const matches = new Set<Misskey.entities.CustomEmoji>();
@@ -219,7 +219,7 @@ watch(q, () => {
};
const searchUnicode = () => {
- const max = 8;
+ const max = 100;
const emojis = emojilist;
const matches = new Set<UnicodeEmojiDef>();