diff options
author | Chocobozzz <me@florianbigard.com> | 2020-01-22 14:02:36 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-01-22 14:14:14 +0100 |
commit | 496b02e38f272622a84ba22db412858d478ae7b0 (patch) | |
tree | 6f3d6dace4b4e2a435ebbb465da3c2f09a61bd3c /client/src/app/+accounts/accounts.component.html | |
parent | 36619ac8f50daf51a46658f0b530495ba3a0b6bf (diff) | |
download | PeerTube-496b02e38f272622a84ba22db412858d478ae7b0.tar.gz PeerTube-496b02e38f272622a84ba22db412858d478ae7b0.tar.zst PeerTube-496b02e38f272622a84ba22db412858d478ae7b0.zip |
Fix is managaeble error
Diffstat (limited to 'client/src/app/+accounts/accounts.component.html')
-rw-r--r-- | client/src/app/+accounts/accounts.component.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/+accounts/accounts.component.html b/client/src/app/+accounts/accounts.component.html index 9596d34af..85f7dd30c 100644 --- a/client/src/app/+accounts/accounts.component.html +++ b/client/src/app/+accounts/accounts.component.html | |||
@@ -16,24 +16,24 @@ | |||
16 | </button> | 16 | </button> |
17 | 17 | ||
18 | </div> | 18 | </div> |
19 | <span *ngIf="user?.blocked" [ngbTooltip]="user.blockedReason" class="badge badge-danger" i18n>Banned</span> | 19 | <span *ngIf="accountUser?.blocked" [ngbTooltip]="accountUser.blockedReason" class="badge badge-danger" i18n>Banned</span> |
20 | <span *ngIf="account.mutedByUser" class="badge badge-danger" i18n>Muted</span> | 20 | <span *ngIf="account.mutedByUser" class="badge badge-danger" i18n>Muted</span> |
21 | <span *ngIf="account.mutedServerByUser" class="badge badge-danger" i18n>Instance muted</span> | 21 | <span *ngIf="account.mutedServerByUser" class="badge badge-danger" i18n>Instance muted</span> |
22 | <span *ngIf="account.mutedByInstance" class="badge badge-danger" i18n>Muted by your instance</span> | 22 | <span *ngIf="account.mutedByInstance" class="badge badge-danger" i18n>Muted by your instance</span> |
23 | <span *ngIf="account.mutedServerByInstance" class="badge badge-danger" i18n>Instance muted by your instance</span> | 23 | <span *ngIf="account.mutedServerByInstance" class="badge badge-danger" i18n>Instance muted by your instance</span> |
24 | 24 | ||
25 | <my-user-moderation-dropdown | 25 | <my-user-moderation-dropdown |
26 | buttonSize="small" [account]="account" [user]="user" placement="bottom-left auto" | 26 | buttonSize="small" [account]="account" [user]="accountUser" placement="bottom-left auto" |
27 | (userChanged)="onUserChanged()" (userDeleted)="onUserDeleted()" | 27 | (userChanged)="onUserChanged()" (userDeleted)="onUserDeleted()" |
28 | ></my-user-moderation-dropdown> | 28 | ></my-user-moderation-dropdown> |
29 | </div> | 29 | </div> |
30 | <div class="actor-followers" i18n-title [title]="subscribersDisplayFor(account.followersCount) + ' to the account actor'"> | 30 | <div class="actor-followers" [title]="accountFollowerTitle"> |
31 | {{ subscribersDisplayFor(naiveAggregatedSubscribers) }} | 31 | {{ subscribersDisplayFor(naiveAggregatedSubscribers) }} |
32 | </div> | 32 | </div> |
33 | </div> | 33 | </div> |
34 | 34 | ||
35 | <div class="right-buttons"> | 35 | <div class="right-buttons"> |
36 | <a *ngIf="isManageable" routerLink="/my-account" class="btn btn-outline-tertiary mr-2" i18n>Manage</a> | 36 | <a *ngIf="isAccountManageable" routerLink="/my-account" class="btn btn-outline-tertiary mr-2" i18n>Manage</a> |
37 | <my-subscribe-button *ngIf="videoChannels" [account]="account" [videoChannels]="videoChannels"></my-subscribe-button> | 37 | <my-subscribe-button *ngIf="videoChannels" [account]="account" [videoChannels]="videoChannels"></my-subscribe-button> |
38 | </div> | 38 | </div> |
39 | </div> | 39 | </div> |