aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows/following-list/following-list.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+admin/follows/following-list/following-list.component.html')
-rw-r--r--client/src/app/+admin/follows/following-list/following-list.component.html6
1 files changed, 6 insertions, 0 deletions
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 e4a45e88c..66ab64c50 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
@@ -8,6 +8,7 @@
8 <th i18n>Host</th> 8 <th i18n>Host</th>
9 <th i18n>State</th> 9 <th i18n>State</th>
10 <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> 10 <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
11 <th i18n>Redundancy allowed</th>
11 <th></th> 12 <th></th>
12 </tr> 13 </tr>
13 </ng-template> 14 </ng-template>
@@ -18,6 +19,11 @@
18 <td>{{ follow.following.host }}</td> 19 <td>{{ follow.following.host }}</td>
19 <td>{{ follow.state }}</td> 20 <td>{{ follow.state }}</td>
20 <td>{{ follow.createdAt }}</td> 21 <td>{{ follow.createdAt }}</td>
22 <td>
23 <my-redundancy-checkbox
24 [host]="follow.following.host" [redundancyAllowed]="follow.following.hostRedundancyAllowed"
25 ></my-redundancy-checkbox>
26 </td>
21 <td class="action-cell"> 27 <td class="action-cell">
22 <my-delete-button (click)="removeFollowing(follow)"></my-delete-button> 28 <my-delete-button (click)="removeFollowing(follow)"></my-delete-button>
23 </td> 29 </td>