diff options
Diffstat (limited to 'client/src/app/+accounts')
-rw-r--r-- | client/src/app/+accounts/accounts.component.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/client/src/app/+accounts/accounts.component.html b/client/src/app/+accounts/accounts.component.html index 036e794d2..60dbcdf1d 100644 --- a/client/src/app/+accounts/accounts.component.html +++ b/client/src/app/+accounts/accounts.component.html | |||
@@ -10,8 +10,13 @@ | |||
10 | <div class="actor-name">{{ account.nameWithHost }}</div> | 10 | <div class="actor-name">{{ account.nameWithHost }}</div> |
11 | 11 | ||
12 | <span *ngIf="user?.blocked" [ngbTooltip]="user.blockedReason" class="badge badge-danger" i18n>Banned</span> | 12 | <span *ngIf="user?.blocked" [ngbTooltip]="user.blockedReason" class="badge badge-danger" i18n>Banned</span> |
13 | <span *ngIf="account.muted" class="badge badge-danger" i18n>Muted</span> | ||
14 | <span *ngIf="account.mutedServer" class="badge badge-danger" i18n>Instance muted</span> | ||
13 | 15 | ||
14 | <my-user-moderation-dropdown buttonSize="small" [user]="user" (userChanged)="onUserChanged()" (userDeleted)="onUserDeleted()"> | 16 | <my-user-moderation-dropdown |
17 | buttonSize="small" [account]="account" [user]="user" | ||
18 | (userChanged)="onUserChanged()" (userDeleted)="onUserDeleted()" | ||
19 | > | ||
15 | </my-user-moderation-dropdown> | 20 | </my-user-moderation-dropdown> |
16 | </div> | 21 | </div> |
17 | <div i18n class="actor-followers">{{ account.followersCount }} subscribers</div> | 22 | <div i18n class="actor-followers">{{ account.followersCount }} subscribers</div> |