Show "it's you" label and hide follow btn for current user

This commit is contained in:
Sergey Suprunenko 2020-05-13 22:58:08 +02:00
parent dbf9285ed7
commit e50857d0ff
No known key found for this signature in database
GPG key ID: 5DCA7D1BE3914F9C

View file

@ -2,7 +2,7 @@
<basic-user-card :user="user"> <basic-user-card :user="user">
<div class="follow-card-content-container"> <div class="follow-card-content-container">
<span <span
v-if="!noFollowsYou && relationship.followed_by" v-if="isMe || !noFollowsYou && relationship.followed_by"
class="faint" class="faint"
> >
{{ isMe ? $t('user_card.its_you') : $t('user_card.follows_you') }} {{ isMe ? $t('user_card.its_you') : $t('user_card.follows_you') }}
@ -15,7 +15,7 @@
<RemoteFollow :user="user" /> <RemoteFollow :user="user" />
</div> </div>
</template> </template>
<template v-else> <template v-else-if="!isMe">
<FollowButton <FollowButton
:relationship="relationship" :relationship="relationship"
:label-following="$t('user_card.follow_unfollow')" :label-following="$t('user_card.follow_unfollow')"