aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNassim Bounouas <NassimBounouas@users.noreply.github.com>2019-06-20 11:38:41 +0200
committerChocobozzz <me@florianbigard.com>2019-06-20 11:38:41 +0200
commite1a1f9c623bfbbc7e38b36047926338f2e1c61d9 (patch)
tree77908003f207e353f044cec39a6b23d15dc5390f
parent26d7879998c5962014458b3f9c0f150b6a1581a4 (diff)
downloadPeerTube-e1a1f9c623bfbbc7e38b36047926338f2e1c61d9.tar.gz
PeerTube-e1a1f9c623bfbbc7e38b36047926338f2e1c61d9.tar.zst
PeerTube-e1a1f9c623bfbbc7e38b36047926338f2e1c61d9.zip
Link to follower profile from administration (#1922)
* #1914 Link to follower profile from administration * #1914 Link to follower profile opens in new tab
-rw-r--r--client/src/app/+admin/follows/followers-list/followers-list.component.html2
1 files changed, 1 insertions, 1 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 da0ba95e3..7d5711926 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
@@ -25,7 +25,7 @@
25 <ng-template pTemplate="body" let-follow> 25 <ng-template pTemplate="body" let-follow>
26 <tr> 26 <tr>
27 <td>{{ follow.id }}</td> 27 <td>{{ follow.id }}</td>
28 <td>{{ follow.follower.name + '@' + follow.follower.host }}</td> 28 <td><a [href]="follow.follower.url" target="_blank" rel="noopener noreferrer">{{ follow.follower.name + '@' + follow.follower.host }}</a></td>
29 29
30 <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td> 30 <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td>
31 <td *ngIf="follow.state === 'pending'" i18n>Pending</td> 31 <td *ngIf="follow.state === 'pending'" i18n>Pending</td>