diff options
| author | zyoshoka <107108195+zyoshoka@users.noreply.github.com> | 2025-06-12 19:05:24 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-12 19:05:24 +0900 |
| commit | 89db7b3fa803c9e95120ca953785d836e70dbfe8 (patch) | |
| tree | 3108a6ee675e9ac242d294d6d4123466bf9c84e6 | |
| parent | New Crowdin updates (#16183) (diff) | |
| download | misskey-89db7b3fa803c9e95120ca953785d836e70dbfe8.tar.gz misskey-89db7b3fa803c9e95120ca953785d836e70dbfe8.tar.bz2 misskey-89db7b3fa803c9e95120ca953785d836e70dbfe8.zip | |
fix(frontend): display reactions correctly in welcome timeline (#16186)
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | packages/frontend/src/pages/welcome.timeline.note.vue | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c4388617f..0eb197ca64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - Fix: コントロールパネルのファイル欄などのデザインが崩れている問題を修正 - Fix: ユーザーの検索結果を追加で読み込むことができない問題を修正 - Fix: タッチ操作時にチャートのツールチップが消えなくなる場合がある問題を修正 +- Fix: ウェルカムタイムラインでリアクションが表示されない問題を修正 ### Server - Feat: 全てのチャットメッセージを既読にするAPIを追加(chat/read-all) diff --git a/packages/frontend/src/pages/welcome.timeline.note.vue b/packages/frontend/src/pages/welcome.timeline.note.vue index b4a24637c9..4dff76901f 100644 --- a/packages/frontend/src/pages/welcome.timeline.note.vue +++ b/packages/frontend/src/pages/welcome.timeline.note.vue @@ -24,8 +24,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkMediaList :mediaList="note.files.slice(0, 4)"/> </div> <div v-if="note.reactionCount > 0" :class="$style.reactions"> - <!-- TODO --> - <!--<MkReactionsViewer :note="note" :maxNumber="16"/>--> + <MkReactionsViewer :noteId="note.id" :reactions="note.reactions" :reactionEmojis="note.reactionEmojis" :myReaction="note.myReaction" :maxNumber="16"/> </div> </div> </div> |