diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2023-10-28 12:41:17 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-28 12:41:17 +0900 |
| commit | 481db8aba42c098d06af8382b1ff7eefa6d4ba48 (patch) | |
| tree | da154614ed33226784ee7fa12a9e670bd5850491 /packages/frontend/src/components/MkNoteSub.vue | |
| parent | update deps (diff) | |
| download | sharkey-481db8aba42c098d06af8382b1ff7eefa6d4ba48.tar.gz sharkey-481db8aba42c098d06af8382b1ff7eefa6d4ba48.tar.bz2 sharkey-481db8aba42c098d06af8382b1ff7eefa6d4ba48.zip | |
fix(frontend): MFMパース時に意図せずnyaizeされる問題を修正 (#12161)
* Update MkMisskeyFlavoredMarkdown.ts
* Update MkMisskeyFlavoredMarkdown.ts
* Update MkMisskeyFlavoredMarkdown.ts
* Update MkNote.vue
* (fix) にゃいずをノートでのみ適用
* fix
* Fix lint
Diffstat (limited to 'packages/frontend/src/components/MkNoteSub.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNoteSub.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNoteSub.vue b/packages/frontend/src/components/MkNoteSub.vue index bc52101f42..3cc8767007 100644 --- a/packages/frontend/src/components/MkNoteSub.vue +++ b/packages/frontend/src/components/MkNoteSub.vue @@ -12,7 +12,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" :i="$i"/> + <Mfm v-if="note.cw != ''" style="margin-right: 8px;" :text="note.cw" :author="note.user" :nyaize="'account'" :i="$i"/> <MkCwButton v-model="showContent" :note="note"/> </p> <div v-show="note.cw == null || showContent"> |