user card: show that the account is locked if it is

This commit is contained in:
William Pitcock 2018-06-07 02:16:30 +00:00
parent 7389f07115
commit d7d787b84c
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
<div class="name-and-screen-name">
<div :title="user.name" class='user-name'>{{user.name}}</div>
<router-link class='user-screen-name':to="{ name: 'user-profile', params: { id: user.id } }">
<span>@{{user.screen_name}}</span>
<span>@{{user.screen_name}}</span><span v-if="user.locked"><i class="icon icon-lock"></i></span>
<span class="dailyAvg">{{dailyAvg}} {{ $t('user_card.per_day') }}</span>
</router-link>
</div>