diff options
author | Nassim Bounouas <NassimBounouas@users.noreply.github.com> | 2019-06-20 11:38:41 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-06-20 11:38:41 +0200 |
commit | e1a1f9c623bfbbc7e38b36047926338f2e1c61d9 (patch) | |
tree | 77908003f207e353f044cec39a6b23d15dc5390f /client/src | |
parent | 26d7879998c5962014458b3f9c0f150b6a1581a4 (diff) | |
download | PeerTube-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
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/+admin/follows/followers-list/followers-list.component.html | 2 |
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> |