diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-06-21 12:42:33 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-06-22 15:53:12 +0100 |
| commit | 6f5099f6995f144bf246a459b4e14e40bc34a4ba (patch) | |
| tree | 686dee4e65e7fd7b4aa77066a06daf7bda412bc6 /packages/frontend/src/components/MkFollowButton.vue | |
| parent | replaced ti-circle-x (diff) | |
| download | sharkey-6f5099f6995f144bf246a459b4e14e40bc34a4ba.tar.gz sharkey-6f5099f6995f144bf246a459b4e14e40bc34a4ba.tar.bz2 sharkey-6f5099f6995f144bf246a459b4e14e40bc34a4ba.zip | |
replaced ti-plus
Diffstat (limited to 'packages/frontend/src/components/MkFollowButton.vue')
| -rw-r--r-- | packages/frontend/src/components/MkFollowButton.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkFollowButton.vue b/packages/frontend/src/components/MkFollowButton.vue index c0a625c69f..a4a71ce6fd 100644 --- a/packages/frontend/src/components/MkFollowButton.vue +++ b/packages/frontend/src/components/MkFollowButton.vue @@ -22,10 +22,10 @@ SPDX-License-Identifier: AGPL-3.0-only <span v-if="full" :class="$style.text">{{ i18n.ts.unfollow }}</span><i class="ph-minus ph-bold ph-lg"></i> </template> <template v-else-if="!isFollowing && user.isLocked"> - <span v-if="full" :class="$style.text">{{ i18n.ts.followRequest }}</span><i class="ph-plus ph-bold ph-lg"></i> + <span v-if="full" :class="$style.text">{{ i18n.ts.followRequest }}</span><i class="ti ti-plus"></i> </template> <template v-else-if="!isFollowing && !user.isLocked"> - <span v-if="full" :class="$style.text">{{ i18n.ts.follow }}</span><i class="ph-plus ph-bold ph-lg"></i> + <span v-if="full" :class="$style.text">{{ i18n.ts.follow }}</span><i class="ti ti-plus"></i> </template> </template> <template v-else> |