mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-27 14:28:53 +09:00
feat: 絵文字ピッカーの検索の表示件数を100件に増加
This commit is contained in:
commit
c43b7ffa2a
@ -21,6 +21,15 @@
|
||||
# 릴리즈 노트
|
||||
이 문서는 CherryPick의 변경 사항만 포함합니다.
|
||||
|
||||
## 13.x.x-cp-4.x.x
|
||||
출시일: unreleased<br>
|
||||
전체 변경 사항을 확인하려면, [CHANGELOG.md#13xx](CHANGELOG.md#13xx) 문서를 참고하십시오.
|
||||
|
||||
### Client
|
||||
- 이모티콘 피커의 검색 건수를 100개로 증가 (misskey-dev/misskey#11371)
|
||||
|
||||
---
|
||||
|
||||
## 13.14.2-cp-4.2.0
|
||||
출시일: 2023/07/29<br>
|
||||
전체 변경 사항을 확인하려면, [CHANGELOG.md#13142](CHANGELOG.md#13142) 문서를 참고하십시오.
|
||||
|
@ -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