diff options
Diffstat (limited to 'src/client/app/common/views/components/follow-button.vue')
| -rw-r--r-- | src/client/app/common/views/components/follow-button.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/follow-button.vue b/src/client/app/common/views/components/follow-button.vue index d88a11aca8..6d120f52b4 100644 --- a/src/client/app/common/views/components/follow-button.vue +++ b/src/client/app/common/views/components/follow-button.vue @@ -48,7 +48,7 @@ export default Vue.extend({ iconAndText(): any[] { return ( (this.hasPendingFollowRequestFromYou && this.user.isLocked) ? ['hourglass-half', this.$t('request-pending')] : - (this.hasPendingFollowRequestFromYou && !this.user.isLocked) ? ['hourglass-start', this.$t('follow-processing')] : + (this.hasPendingFollowRequestFromYou && !this.user.isLocked) ? ['spinner', this.$t('follow-processing')] : (this.isFollowing) ? ['minus', this.$t('following')] : (!this.isFollowing && this.user.isLocked) ? ['plus', this.$t('follow-request')] : (!this.isFollowing && !this.user.isLocked) ? ['plus', this.$t('follow')] : |