aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about-follows/about-follows.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-04-14 09:42:50 +0200
committerChocobozzz <me@florianbigard.com>2023-04-14 09:42:50 +0200
commitd15531fb3567f2f27229d3086ffd48069ca73315 (patch)
tree48c29a05fd6f2d3b293d408778e7de9292e04732 /client/src/app/+about/about-follows/about-follows.component.html
parent848347f193ca43f098e77b321f6555bd4a143e62 (diff)
downloadPeerTube-d15531fb3567f2f27229d3086ffd48069ca73315.tar.gz
PeerTube-d15531fb3567f2f27229d3086ffd48069ca73315.tar.zst
PeerTube-d15531fb3567f2f27229d3086ffd48069ca73315.zip
Fix follow links
Diffstat (limited to 'client/src/app/+about/about-follows/about-follows.component.html')
-rw-r--r--client/src/app/+about/about-follows/about-follows.component.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/+about/about-follows/about-follows.component.html b/client/src/app/+about/about-follows/about-follows.component.html
index fd4109416..37571dfa4 100644
--- a/client/src/app/+about/about-follows/about-follows.component.html
+++ b/client/src/app/+about/about-follows/about-follows.component.html
@@ -6,8 +6,8 @@
6 6
7 <div i18n class="no-results" *ngIf="followersPagination.totalItems === 0">{{ instanceName }} does not have followers.</div> 7 <div i18n class="no-results" *ngIf="followersPagination.totalItems === 0">{{ instanceName }} does not have followers.</div>
8 8
9 <a *ngFor="let follower of followers" [href]="buildLink(follower)" target="_blank" rel="noopener noreferrer"> 9 <a *ngFor="let follower of followers" [href]="follower.url" target="_blank" rel="noopener noreferrer">
10 {{ follower }} 10 {{ follower.name }}
11 </a> 11 </a>
12 12
13 <button i18n class="peertube-button-link grey-button mt-1" *ngIf="!loadedAllFollowers && canLoadMoreFollowers()" (click)="loadAllFollowers()">Show full list</button> 13 <button i18n class="peertube-button-link grey-button mt-1" *ngIf="!loadedAllFollowers && canLoadMoreFollowers()" (click)="loadAllFollowers()">Show full list</button>
@@ -18,8 +18,8 @@
18 18
19 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">{{ instanceName }} does not have subscriptions.</div> 19 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">{{ instanceName }} does not have subscriptions.</div>
20 20
21 <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer"> 21 <a *ngFor="let following of followings" [href]="following.url" target="_blank" rel="noopener noreferrer">
22 {{ following }} 22 {{ following.name }}
23 </a> 23 </a>
24 24
25 <button i18n class="peertube-button-link grey-button mt-1" *ngIf="!loadedAllFollowings && canLoadMoreFollowings()" (click)="loadAllFollowings()">Show full list</button> 25 <button i18n class="peertube-button-link grey-button mt-1" *ngIf="!loadedAllFollowings && canLoadMoreFollowings()" (click)="loadAllFollowings()">Show full list</button>