diff options
| author | Sergey Suprunenko <suprunenko.s@gmail.com> | 2020-05-14 09:27:58 +0200 |
|---|---|---|
| committer | Sergey Suprunenko <suprunenko.s@gmail.com> | 2020-05-14 09:27:58 +0200 |
| commit | db8dd1223c124e8461806a219d77817ba495794c (patch) | |
| tree | 67fbb04101e679286b1c60aa2c31102b05c19461 /src | |
| parent | e50857d0ffecf7639f14c7dba150e55ef9d2fe74 (diff) | |
Make a condition clear and unambiguous
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/follow_card/follow_card.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/follow_card/follow_card.vue b/src/components/follow_card/follow_card.vue index fe2d8ab8..b503783f 100644 --- a/src/components/follow_card/follow_card.vue +++ b/src/components/follow_card/follow_card.vue @@ -2,7 +2,7 @@ <basic-user-card :user="user"> <div class="follow-card-content-container"> <span - v-if="isMe || !noFollowsYou && relationship.followed_by" + v-if="isMe || (!noFollowsYou && relationship.followed_by)" class="faint" > {{ isMe ? $t('user_card.its_you') : $t('user_card.follows_you') }} |
