update CHANGELOG.md && デバッグ用に最大リアクション表示数を1にしてたのを一応戻した

This commit is contained in:
1Step621 2024-01-07 13:33:00 +09:00
parent ebf81dd87e
commit 1f1a61ad36
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@
- Enhance: ハッシュタグ入力時に、本文の末尾の行に何も書かれていない場合は新たにスペースを追加しないように
- Fix: v2023.12.0で追加された「モデレーターがユーザーのアイコンもしくはバナー画像を未設定状態にできる機能」が管理画面上で正しく表示されていない問題を修正
- Enhance: チャンネルノートのピン留めをノートのメニューからできるよ
- Enhance: ノートについているリアクションの「もっと!」から、リアクションの一覧を表示できるように
### Server
- Enhance: 連合先のレートリミットに引っかかった際にリトライするようになりました

View File

@ -93,7 +93,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
<MkA v-if="appearNote.channel && !inChannel" :class="$style.channel" :to="`/channels/${appearNote.channel.id}`"><i class="ti ti-device-tv"></i> {{ appearNote.channel.name }}</MkA>
</div>
<MkReactionsViewer :note="appearNote" :maxNumber="1" @mockUpdateMyReaction="emitUpdReaction">
<MkReactionsViewer :note="appearNote" :maxNumber="16" @mockUpdateMyReaction="emitUpdReaction">
<template #more>
<MkButton class="_button" link :to="`/notes/${appearNote.id}/reactions`" :class="$style.reactionOmitted">{{ i18n.ts.more }}</MkButton>
</template>