summaryrefslogtreecommitdiff
path: root/packages/client/src/components/MkNotification.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-12-19 13:53:41 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-12-19 13:53:41 +0900
commitf83bd31fd5fee0bb2209ad0e5359ffa473ffb30e (patch)
treeb589c3f04550fc0fb94c59085bea8ffc930e7b04 /packages/client/src/components/MkNotification.vue
parentupdate depsd (diff)
downloadmisskey-f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e.tar.gz
misskey-f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e.tar.bz2
misskey-f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e.zip
wip
Diffstat (limited to 'packages/client/src/components/MkNotification.vue')
-rw-r--r--packages/client/src/components/MkNotification.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/client/src/components/MkNotification.vue b/packages/client/src/components/MkNotification.vue
index c00e9fbf42..a072630984 100644
--- a/packages/client/src/components/MkNotification.vue
+++ b/packages/client/src/components/MkNotification.vue
@@ -5,12 +5,12 @@
<MkAvatar v-else-if="notification.user" class="icon" :user="notification.user"/>
<img v-else-if="notification.icon" class="icon" :src="notification.icon" alt=""/>
<div class="sub-icon" :class="notification.type">
- <i v-if="notification.type === 'follow'" class="fas fa-plus"></i>
+ <i v-if="notification.type === 'follow'" class="ti ti-plus"></i>
<i v-else-if="notification.type === 'receiveFollowRequest'" class="fas fa-clock"></i>
- <i v-else-if="notification.type === 'followRequestAccepted'" class="fas fa-check"></i>
+ <i v-else-if="notification.type === 'followRequestAccepted'" class="ti ti-check"></i>
<i v-else-if="notification.type === 'groupInvited'" class="fas fa-id-card-alt"></i>
- <i v-else-if="notification.type === 'renote'" class="fas fa-retweet"></i>
- <i v-else-if="notification.type === 'reply'" class="fas fa-reply"></i>
+ <i v-else-if="notification.type === 'renote'" class="ti ti-repeat"></i>
+ <i v-else-if="notification.type === 'reply'" class="ti ti-arrow-back-up"></i>
<i v-else-if="notification.type === 'mention'" class="fas fa-at"></i>
<i v-else-if="notification.type === 'quote'" class="fas fa-quote-left"></i>
<i v-else-if="notification.type === 'pollVote'" class="fas fa-poll-h"></i>