diff options
| author | Andreas Nedbal <github-bf215181b5140522137b3d4f6b73544a@desu.email> | 2022-06-09 16:45:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-09 23:45:16 +0900 |
| commit | 7dde0b136235d8ea8474c5045611626bd769afa1 (patch) | |
| tree | ff443929b82da63697479351a418173c9dc812b6 /packages/client/src | |
| parent | fix: use autocomplete=new-password (#8797) (diff) | |
| download | misskey-7dde0b136235d8ea8474c5045611626bd769afa1.tar.gz misskey-7dde0b136235d8ea8474c5045611626bd769afa1.tar.bz2 misskey-7dde0b136235d8ea8474c5045611626bd769afa1.zip | |
fix(client): render quote renote CWs as MFM (#8792)
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'packages/client/src')
| -rw-r--r-- | packages/client/src/components/note-simple.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/components/note-simple.vue b/packages/client/src/components/note-simple.vue index c6907787b5..b813b9a2b9 100644 --- a/packages/client/src/components/note-simple.vue +++ b/packages/client/src/components/note-simple.vue @@ -5,7 +5,7 @@ <XNoteHeader class="header" :note="note" :mini="true"/> <div class="body"> <p v-if="note.cw != null" class="cw"> - <span v-if="note.cw != ''" class="text">{{ note.cw }}</span> + <Mfm v-if="note.cw != ''" class="text" :text="note.cw" :author="note.user" :i="$i" :custom-emojis="note.emojis"/> <XCwButton v-model="showContent" :note="note"/> </p> <div v-show="note.cw == null || showContent" class="content"> |