summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components
diff options
context:
space:
mode:
authorIbuki Sugiyama <main@fuwa.dev>2023-08-05 14:05:32 +0900
committerGitHub <noreply@github.com>2023-08-05 14:05:32 +0900
commite11320dbb70bbae0da78975718cc06b440daa6a4 (patch)
tree1a4df074066c6e02595cace3fa7d5e8c6968a962 /packages/frontend/src/components
parentchore: cacheRemoteFilesのデフォルト値をfalseに (#11398) (diff)
downloadmisskey-e11320dbb70bbae0da78975718cc06b440daa6a4.tar.gz
misskey-e11320dbb70bbae0da78975718cc06b440daa6a4.tar.bz2
misskey-e11320dbb70bbae0da78975718cc06b440daa6a4.zip
feat: increase emoji picker search results (#11371)
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
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>();