mirror of
https://example.com
synced 2024-11-22 12:06:39 +09:00
fix: increase emoji picker search results (close #13)
Co-authored-by: naskya <m@naskya.net>
This commit is contained in:
parent
b1a66c89a6
commit
3ce8c47c0b
2 changed files with 2 additions and 1 deletions
|
@ -34,6 +34,7 @@
|
|||
|
||||
## 細かい変更点
|
||||
|
||||
- 絵文字ピッカーに表示されるカスタム絵文字の検索結果の件数を最大 100 件に変更(Misskey の変更を取り込み)
|
||||
- HTML のコードに入るコメントアートを削除
|
||||
- 全ページにこんなの入れなくても……
|
||||
- 本家 Firefish へのまだマージされていないマージリクエストを独断でマージ
|
||||
|
|
|
@ -258,7 +258,7 @@ watch(q, () => {
|
|||
const newQ = q.value.replace(/:/g, "").toLowerCase();
|
||||
|
||||
const searchCustom = () => {
|
||||
const max = 16;
|
||||
const max = 100;
|
||||
const emojis = customEmojis;
|
||||
const matches = new Set<firefish.entities.CustomEmoji>();
|
||||
|
||||
|
|
Loading…
Reference in a new issue