diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/+admin/follows/followers-list/followers-list.component.html | 6 | ||||
-rw-r--r-- | client/src/app/+admin/follows/following-list/following-list.component.html | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/client/src/app/+admin/follows/followers-list/followers-list.component.html b/client/src/app/+admin/follows/followers-list/followers-list.component.html index 7d5711926..6b5f3b450 100644 --- a/client/src/app/+admin/follows/followers-list/followers-list.component.html +++ b/client/src/app/+admin/follows/followers-list/followers-list.component.html | |||
@@ -13,10 +13,9 @@ | |||
13 | 13 | ||
14 | <ng-template pTemplate="header"> | 14 | <ng-template pTemplate="header"> |
15 | <tr> | 15 | <tr> |
16 | <th i18n style="width: 60px">ID</th> | ||
17 | <th i18n>Follower handle</th> | 16 | <th i18n>Follower handle</th> |
18 | <th i18n>State</th> | 17 | <th i18n pSortableColumn="state">State <p-sortIcon field="state"></p-sortIcon></th> |
19 | <th i18n>Score</th> | 18 | <th i18n pSortableColumn="score">Score <p-sortIcon field="score"></p-sortIcon></th> |
20 | <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> | 19 | <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> |
21 | <th></th> | 20 | <th></th> |
22 | </tr> | 21 | </tr> |
@@ -24,7 +23,6 @@ | |||
24 | 23 | ||
25 | <ng-template pTemplate="body" let-follow> | 24 | <ng-template pTemplate="body" let-follow> |
26 | <tr> | 25 | <tr> |
27 | <td>{{ follow.id }}</td> | ||
28 | <td><a [href]="follow.follower.url" target="_blank" rel="noopener noreferrer">{{ follow.follower.name + '@' + follow.follower.host }}</a></td> | 26 | <td><a [href]="follow.follower.url" target="_blank" rel="noopener noreferrer">{{ follow.follower.name + '@' + follow.follower.host }}</a></td> |
29 | 27 | ||
30 | <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td> | 28 | <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td> |
diff --git a/client/src/app/+admin/follows/following-list/following-list.component.html b/client/src/app/+admin/follows/following-list/following-list.component.html index 5bc8fbc2d..5a252eda9 100644 --- a/client/src/app/+admin/follows/following-list/following-list.component.html +++ b/client/src/app/+admin/follows/following-list/following-list.component.html | |||
@@ -15,18 +15,16 @@ | |||
15 | 15 | ||
16 | <ng-template pTemplate="header"> | 16 | <ng-template pTemplate="header"> |
17 | <tr> | 17 | <tr> |
18 | <th i18n style="width: 60px">ID</th> | ||
19 | <th i18n>Host</th> | 18 | <th i18n>Host</th> |
20 | <th i18n>State</th> | 19 | <th i18n pSortableColumn="state">State <p-sortIcon field="state"></p-sortIcon></th> |
21 | <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> | 20 | <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> |
22 | <th i18n>Redundancy allowed</th> | 21 | <th i18n pSortableColumn="redundancyAllowed">Redundancy allowed <p-sortIcon field="redundancyAllowed"></p-sortIcon></th> |
23 | <th></th> | 22 | <th></th> |
24 | </tr> | 23 | </tr> |
25 | </ng-template> | 24 | </ng-template> |
26 | 25 | ||
27 | <ng-template pTemplate="body" let-follow> | 26 | <ng-template pTemplate="body" let-follow> |
28 | <tr> | 27 | <tr> |
29 | <td>{{ follow.id }}</td> | ||
30 | <td>{{ follow.following.host }}</td> | 28 | <td>{{ follow.following.host }}</td> |
31 | 29 | ||
32 | <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td> | 30 | <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td> |