diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-11-15 11:09:54 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-11-15 11:09:54 +0900 |
| commit | 3939360e5569e6a3b851f89616ff2bed1b72fb41 (patch) | |
| tree | 9819f445183fdf1d558893b97f3b9723f46c2f0a /packages/frontend/src/components/MkNoteSimple.vue | |
| parent | Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff) | |
| download | sharkey-3939360e5569e6a3b851f89616ff2bed1b72fb41.tar.gz sharkey-3939360e5569e6a3b851f89616ff2bed1b72fb41.tar.bz2 sharkey-3939360e5569e6a3b851f89616ff2bed1b72fb41.zip | |
fix(frontend): 特定の条件下でノートがnyaizeされない問題を修正
Fix #12331
Diffstat (limited to 'packages/frontend/src/components/MkNoteSimple.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNoteSimple.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNoteSimple.vue b/packages/frontend/src/components/MkNoteSimple.vue index 28b00af246..a40dcaf003 100644 --- a/packages/frontend/src/components/MkNoteSimple.vue +++ b/packages/frontend/src/components/MkNoteSimple.vue @@ -10,7 +10,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkNoteHeader :class="$style.header" :note="note" :mini="true"/> <div> <p v-if="note.cw != null" :class="$style.cw"> - <Mfm v-if="note.cw != ''" style="margin-right: 8px;" :text="note.cw" :author="note.user" :nyaize="'account'" :emojiUrls="note.emojis"/> + <Mfm v-if="note.cw != ''" style="margin-right: 8px;" :text="note.cw" :author="note.user" :nyaize="'respect'" :emojiUrls="note.emojis"/> <MkCwButton v-model="showContent" :note="note"/> </p> <div v-show="note.cw == null || showContent"> |