summaryrefslogtreecommitdiff
path: root/packages/client/src/components/MkChannelFollowButton.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/client/src/components/MkChannelFollowButton.vue')
-rw-r--r--packages/client/src/components/MkChannelFollowButton.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/client/src/components/MkChannelFollowButton.vue b/packages/client/src/components/MkChannelFollowButton.vue
index dff02beec0..46d57b4fc6 100644
--- a/packages/client/src/components/MkChannelFollowButton.vue
+++ b/packages/client/src/components/MkChannelFollowButton.vue
@@ -6,14 +6,14 @@
>
<template v-if="!wait">
<template v-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>
- <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>
- <span v-if="full">{{ i18n.ts.processing }}</span><i class="fas fa-spinner fa-pulse fa-fw"></i>
+ <span v-if="full">{{ i18n.ts.processing }}</span><i class="fas fa-spinner fa-pulse ti-fw"></i>
</template>
</button>
</template>