diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-19 13:53:41 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-19 13:53:41 +0900 |
| commit | f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e (patch) | |
| tree | b589c3f04550fc0fb94c59085bea8ffc930e7b04 /packages/client/src/components/MkFollowButton.vue | |
| parent | update depsd (diff) | |
| download | misskey-f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e.tar.gz misskey-f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e.tar.bz2 misskey-f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e.zip | |
wip
Diffstat (limited to 'packages/client/src/components/MkFollowButton.vue')
| -rw-r--r-- | packages/client/src/components/MkFollowButton.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/client/src/components/MkFollowButton.vue b/packages/client/src/components/MkFollowButton.vue index efee795e43..5ec50cd28b 100644 --- a/packages/client/src/components/MkFollowButton.vue +++ b/packages/client/src/components/MkFollowButton.vue @@ -12,13 +12,13 @@ <span v-if="full">{{ i18n.ts.processing }}</span><i class="fas fa-spinner fa-pulse"></i> </template> <template v-else-if="isFollowing"> - <span v-if="full">{{ i18n.ts.unfollow }}</span><i class="fas fa-minus"></i> + <span v-if="full">{{ i18n.ts.unfollow }}</span><i class="ti ti-minus"></i> </template> <template v-else-if="!isFollowing && user.isLocked"> - <span v-if="full">{{ i18n.ts.followRequest }}</span><i class="fas fa-plus"></i> + <span v-if="full">{{ i18n.ts.followRequest }}</span><i class="ti ti-plus"></i> </template> <template v-else-if="!isFollowing && !user.isLocked"> - <span v-if="full">{{ i18n.ts.follow }}</span><i class="fas fa-plus"></i> + <span v-if="full">{{ i18n.ts.follow }}</span><i class="ti ti-plus"></i> </template> </template> <template v-else> |