diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-19 19:01:30 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-19 19:01:30 +0900 |
| commit | 917ef465a5520137b478ffcf16af5a9e717d7a40 (patch) | |
| tree | 875796c757aa058e05ad9d50691f04e16ccd8db0 /packages/client/src/components/MkSubNoteContent.vue | |
| parent | fix(client): add missing ref for MkButton (#9357) (diff) | |
| download | sharkey-917ef465a5520137b478ffcf16af5a9e717d7a40.tar.gz sharkey-917ef465a5520137b478ffcf16af5a9e717d7a40.tar.bz2 sharkey-917ef465a5520137b478ffcf16af5a9e717d7a40.zip | |
Use tabler icons (#9354)
* wip
* wip
* wip
* Update style.scss
* wip
* wip
* wip
* wip
Diffstat (limited to 'packages/client/src/components/MkSubNoteContent.vue')
| -rw-r--r-- | packages/client/src/components/MkSubNoteContent.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/components/MkSubNoteContent.vue b/packages/client/src/components/MkSubNoteContent.vue index 237f4cf228..210923be46 100644 --- a/packages/client/src/components/MkSubNoteContent.vue +++ b/packages/client/src/components/MkSubNoteContent.vue @@ -3,7 +3,7 @@ <div class="body"> <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="reply" :to="`/notes/${note.replyId}`"><i class="fas fa-reply"></i></MkA> + <MkA v-if="note.replyId" class="reply" :to="`/notes/${note.replyId}`"><i class="ti ti-arrow-back-up"></i></MkA> <Mfm v-if="note.text" :text="note.text" :author="note.user" :i="$i" :custom-emojis="note.emojis"/> <MkA v-if="note.renoteId" class="rp" :to="`/notes/${note.renoteId}`">RN: ...</MkA> </div> |