mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-27 22:39:33 +09:00
feat: increase emoji picker search results (#116)
Co-authored-by: ibuki2003 <main@fuwa.dev>
This commit is contained in:
parent
1e6389d990
commit
92ecf2fe12
@ -151,7 +151,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>();
|
||||
|
||||
@ -214,7 +214,7 @@ watch(q, () => {
|
||||
};
|
||||
|
||||
const searchUnicode = () => {
|
||||
const max = 8;
|
||||
const max = 100;
|
||||
const emojis = emojilist;
|
||||
const matches = new Set<UnicodeEmojiDef>();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user