summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkSubNoteContent.vue
diff options
context:
space:
mode:
authorMar0xy <marie@kaifa.ch>2023-10-01 00:52:07 +0200
committerMar0xy <marie@kaifa.ch>2023-10-01 00:52:07 +0200
commit8d4e99b3a9a877e1f801d239c1cf6489d74a95d4 (patch)
treed43487ec7dff389669e21046e65dac8498d06a71 /packages/frontend/src/components/MkSubNoteContent.vue
parentupd: add buttons to replies (diff)
parentupd: looks better than small circle (diff)
downloadsharkey-8d4e99b3a9a877e1f801d239c1cf6489d74a95d4.tar.gz
sharkey-8d4e99b3a9a877e1f801d239c1cf6489d74a95d4.tar.bz2
sharkey-8d4e99b3a9a877e1f801d239c1cf6489d74a95d4.zip
Merge branch 'icons' of https://github.com/transfem-org/Sharkey into icons
Diffstat (limited to 'packages/frontend/src/components/MkSubNoteContent.vue')
-rw-r--r--packages/frontend/src/components/MkSubNoteContent.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkSubNoteContent.vue b/packages/frontend/src/components/MkSubNoteContent.vue
index 789cca6f51..a0559e719a 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 @click="noteclick(note.id)">
<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-u-up-left 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 pg-lg"></i></MkA>
<Mfm v-if="note.text" :text="note.text" :author="note.user" :i="$i" :emojiUrls="note.emojis"/>
<MkA v-if="note.renoteId" :class="$style.rp" :to="`/notes/${note.renoteId}`" v-on:click.stop>RN: ...</MkA>
</div>