fix(frontend): display reactions correctly in welcome timeline (#16186)
This commit is contained in:
parent
151121a567
commit
89db7b3fa8
|
@ -12,6 +12,7 @@
|
||||||
- Fix: コントロールパネルのファイル欄などのデザインが崩れている問題を修正
|
- Fix: コントロールパネルのファイル欄などのデザインが崩れている問題を修正
|
||||||
- Fix: ユーザーの検索結果を追加で読み込むことができない問題を修正
|
- Fix: ユーザーの検索結果を追加で読み込むことができない問題を修正
|
||||||
- Fix: タッチ操作時にチャートのツールチップが消えなくなる場合がある問題を修正
|
- Fix: タッチ操作時にチャートのツールチップが消えなくなる場合がある問題を修正
|
||||||
|
- Fix: ウェルカムタイムラインでリアクションが表示されない問題を修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- Feat: 全てのチャットメッセージを既読にするAPIを追加(chat/read-all)
|
- Feat: 全てのチャットメッセージを既読にするAPIを追加(chat/read-all)
|
||||||
|
|
|
@ -24,8 +24,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<MkMediaList :mediaList="note.files.slice(0, 4)"/>
|
<MkMediaList :mediaList="note.files.slice(0, 4)"/>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="note.reactionCount > 0" :class="$style.reactions">
|
<div v-if="note.reactionCount > 0" :class="$style.reactions">
|
||||||
<!-- TODO -->
|
<MkReactionsViewer :noteId="note.id" :reactions="note.reactions" :reactionEmojis="note.reactionEmojis" :myReaction="note.myReaction" :maxNumber="16"/>
|
||||||
<!--<MkReactionsViewer :note="note" :maxNumber="16"/>-->
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue