feat: increase emoji picker search results
This commit is contained in:
parent
8851e90316
commit
355d40dc90
|
@ -18,6 +18,7 @@
|
|||
|
||||
### Client
|
||||
- リストTLで、ユーザーが追加・削除されてもTLを初期化しないように
|
||||
- 絵文字ピッカーの検索の表示件数を100件に増加
|
||||
|
||||
### Server
|
||||
-
|
||||
|
|
|
@ -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