diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-11-04 14:32:28 +0100 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-11-04 14:32:28 +0100 |
| commit | 647e76ab36ee99d5c3e6da95cd4a941d6cbc8114 (patch) | |
| tree | 01039aa66e053c1da9cf9d04a9474b1b7756daf3 /packages/frontend/src/components/MkSubNoteContent.vue | |
| parent | upd: change misskey to sharkey, msky to shonk (diff) | |
| parent | New Crowdin updates (#12241) (diff) | |
| download | sharkey-647e76ab36ee99d5c3e6da95cd4a941d6cbc8114.tar.gz sharkey-647e76ab36ee99d5c3e6da95cd4a941d6cbc8114.tar.bz2 sharkey-647e76ab36ee99d5c3e6da95cd4a941d6cbc8114.zip | |
merge: upstream
Diffstat (limited to 'packages/frontend/src/components/MkSubNoteContent.vue')
| -rw-r--r-- | packages/frontend/src/components/MkSubNoteContent.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkSubNoteContent.vue b/packages/frontend/src/components/MkSubNoteContent.vue index d93b00eb3a..0b411b75be 100644 --- a/packages/frontend/src/components/MkSubNoteContent.vue +++ b/packages/frontend/src/components/MkSubNoteContent.vue @@ -9,12 +9,12 @@ SPDX-License-Identifier: AGPL-3.0-only <span v-if="note.isHidden" style="opacity: 0.5">({{ i18n.ts.private }})</span> <span v-if="note.deletedAt" style="opacity: 0.5">({{ i18n.ts.deleted }})</span> <MkA v-if="note.replyId" :class="$style.reply" :to="`/notes/${note.replyId}`" v-on:click.stop><i class="ph-arrow-bend-left-up ph-bold pg-lg"></i></MkA> - <Mfm v-if="note.text" :text="note.text" :author="note.user" :nyaize="'account'" :i="$i" :emojiUrls="note.emojis"/> + <Mfm v-if="note.text" :text="note.text" :author="note.user" :nyaize="'account'" :emojiUrls="note.emojis"/> <div v-if="note.text && translating || note.text && translation" :class="$style.translation"> <MkLoading v-if="translating" mini/> <div v-else> <b>{{ i18n.t('translatedFrom', { x: translation.sourceLang }) }}: </b> - <Mfm :text="translation.text" :author="note.user" :nyaize="'account'" :i="$i" :emojiUrls="note.emojis"/> + <Mfm :text="translation.text" :author="note.user" :nyaize="'account'" :emojiUrls="note.emojis"/> </div> </div> <MkA v-if="note.renoteId" :class="$style.rp" :to="`/notes/${note.renoteId}`" v-on:click.stop>RN: ...</MkA> |