diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-07-05 08:18:56 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-07-05 08:18:56 +0900 |
| commit | 73397e1b7ebf51b1abca15f9187cd380fc2e7c61 (patch) | |
| tree | 15521efe7d1cc42fc70244f4ea6d2994074c91b2 /packages/frontend/src | |
| parent | refactor (diff) | |
| parent | test: VS Code上で複数のjestテストを表示できるように (#16251) (diff) | |
| download | misskey-73397e1b7ebf51b1abca15f9187cd380fc2e7c61.tar.gz misskey-73397e1b7ebf51b1abca15f9187cd380fc2e7c61.tar.bz2 misskey-73397e1b7ebf51b1abca15f9187cd380fc2e7c61.zip | |
Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
Diffstat (limited to 'packages/frontend/src')
| -rw-r--r-- | packages/frontend/src/pages/welcome.timeline.note.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/welcome.timeline.note.vue b/packages/frontend/src/pages/welcome.timeline.note.vue index 4dff76901f..c119f4cf05 100644 --- a/packages/frontend/src/pages/welcome.timeline.note.vue +++ b/packages/frontend/src/pages/welcome.timeline.note.vue @@ -20,7 +20,7 @@ SPDX-License-Identifier: AGPL-3.0-only <Mfm v-if="note.text" :text="note.text" :author="note.user"/> <MkA v-if="note.renoteId" class="rp" :to="`/notes/${note.renoteId}`">RN: ...</MkA> </div> - <div v-if="note.files && note.files.length > 0" :class="$style.richcontent"> + <div v-if="note.files && note.files.length > 0 && (note.cw == null || showContent)" :class="$style.richcontent"> <MkMediaList :mediaList="note.files.slice(0, 4)"/> </div> <div v-if="note.reactionCount > 0" :class="$style.reactions"> |