diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-11-04 21:52:12 +0100 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-11-04 21:52:12 +0100 |
| commit | db29a5c2da3a8dcf630536b95337df398440d86e (patch) | |
| tree | 421faa6ae5c4a22a18105a7b1412af9ec06dbfa2 /packages/frontend/src/components/MkSubNoteContent.vue | |
| parent | chore: replace icons on new menu (diff) | |
| parent | fix: icons being inconsistent and PG (#136) (diff) | |
| download | sharkey-db29a5c2da3a8dcf630536b95337df398440d86e.tar.gz sharkey-db29a5c2da3a8dcf630536b95337df398440d86e.tar.bz2 sharkey-db29a5c2da3a8dcf630536b95337df398440d86e.zip | |
merge: develop
Diffstat (limited to 'packages/frontend/src/components/MkSubNoteContent.vue')
| -rw-r--r-- | packages/frontend/src/components/MkSubNoteContent.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkSubNoteContent.vue b/packages/frontend/src/components/MkSubNoteContent.vue index 0b411b75be..ac07e994ec 100644 --- a/packages/frontend/src/components/MkSubNoteContent.vue +++ b/packages/frontend/src/components/MkSubNoteContent.vue @@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div :class="{ [$style.clickToOpen]: defaultStore.state.clickToOpen }" @click="defaultStore.state.clickToOpen ? noteclick(note.id) : undefined"> <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> + <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 ph-lg"></i></MkA> <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/> |