diff options
| author | ValD <maghtpol@gmail.com> | 2018-12-13 23:11:36 +0530 |
|---|---|---|
| committer | ValD <maghtpol@gmail.com> | 2018-12-13 23:20:59 +0530 |
| commit | e2f825266a967029ef163ecc8cfb8e5d26a5e635 (patch) | |
| tree | a1d58a75aa648a706872df29f3e5d09467776144 /src/components/user_card/user_card.vue | |
| parent | ad56c8e5bd3f62829b7ccfac285a10425dcbb57a (diff) | |
added condition to check for logined user
Diffstat (limited to 'src/components/user_card/user_card.vue')
| -rw-r--r-- | src/components/user_card/user_card.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index 5a8e5531..eb0d7576 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -10,13 +10,13 @@ <div :title="user.name" v-if="user.name_html" class="user-name"> <span v-html="user.name_html"></span> <span class="follows-you" v-if="!userExpanded && showFollows && user.follows_you"> - {{ $t('user_card.follows_you') }} + {{ currentUser.id == user.id ? $t('user_card.its_you') : $t('user_card.follows_you') }} </span> </div> <div :title="user.name" v-else class="user-name"> {{ user.name }} <span class="follows-you" v-if="!userExpanded && showFollows && user.follows_you"> - {{ $t('user_card.follows_you') }} + {{ currentUser.id == user.id ? $t('user_card.its_you') : $t('user_card.follows_you') }} </span> </div> <router-link class='user-screen-name' :to="{ name: 'user-profile', params: { id: user.id } }"> |
