diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-23 18:25:44 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-23 18:25:44 +0900 |
| commit | 37dc1c9a82c72ca1d28ab05a55269eac650133db (patch) | |
| tree | 573d6d6f6f4ffd5b63ef137543ab685c40c31508 /src/client/components/sub-note-content.vue | |
| parent | Merge branch 'develop' (diff) | |
| parent | Update package.json (diff) | |
| download | misskey-37dc1c9a82c72ca1d28ab05a55269eac650133db.tar.gz misskey-37dc1c9a82c72ca1d28ab05a55269eac650133db.tar.bz2 misskey-37dc1c9a82c72ca1d28ab05a55269eac650133db.zip | |
Merge branch 'develop'
Diffstat (limited to 'src/client/components/sub-note-content.vue')
| -rw-r--r-- | src/client/components/sub-note-content.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/components/sub-note-content.vue b/src/client/components/sub-note-content.vue index 384bcb4563..ff89a9887b 100644 --- a/src/client/components/sub-note-content.vue +++ b/src/client/components/sub-note-content.vue @@ -3,7 +3,7 @@ <div class="body"> <span v-if="note.isHidden" style="opacity: 0.5">({{ $ts.private }})</span> <span v-if="note.deletedAt" style="opacity: 0.5">({{ $ts.deleted }})</span> - <MkA class="reply" v-if="note.replyId" :to="`/notes/${note.replyId}`"><Fa :icon="faReply"/></MkA> + <MkA class="reply" v-if="note.replyId" :to="`/notes/${note.replyId}`"><i class="fas fa-reply"></i></MkA> <Mfm v-if="note.text" :text="note.text" :author="note.user" :i="$i" :custom-emojis="note.emojis"/> <MkA class="rp" v-if="note.renoteId" :to="`/notes/${note.renoteId}`">RN: ...</MkA> </div> @@ -20,7 +20,6 @@ <script lang="ts"> import { defineComponent } from 'vue'; -import { faReply } from '@fortawesome/free-solid-svg-icons'; import XPoll from './poll.vue'; import XMediaList from './media-list.vue'; import * as os from '@client/os'; @@ -38,7 +37,6 @@ export default defineComponent({ }, data() { return { - faReply }; } }); |