aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about-follows/about-follows.component.html
diff options
context:
space:
mode:
authorMahdiTurki <mahditurki123@yahoo.fr>2020-04-27 12:37:18 +0100
committerChocobozzz <me@florianbigard.com>2020-12-14 09:57:41 +0100
commitbd49f8e988429447747e34533df5eab5b7bed210 (patch)
tree173112cce1ee70dc5dfe27ba32c3c8130f2e7fe6 /client/src/app/+about/about-follows/about-follows.component.html
parent49c4dd7ec32e210537e98aca11a391c025224c0f (diff)
downloadPeerTube-bd49f8e988429447747e34533df5eab5b7bed210.tar.gz
PeerTube-bd49f8e988429447747e34533df5eab5b7bed210.tar.zst
PeerTube-bd49f8e988429447747e34533df5eab5b7bed210.zip
Change button
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.html14
1 files changed, 11 insertions, 3 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 fbca9f3b0..50e00b651 100644
--- a/client/src/app/+about/about-follows/about-follows.component.html
+++ b/client/src/app/+about/about-follows/about-follows.component.html
@@ -9,7 +9,7 @@
9 {{ follower }} 9 {{ follower }}
10 </a> 10 </a>
11 11
12 <a id="showMore" href="javascript:;" *ngIf="!showMoreFollowers" (click)="loadAllFollowers()" (click)= "showMoreFollowers=true">Show full list</a> 12 <a i18n class="showMore" *ngIf="!showMoreFollowers" (click)="loadAllFollowers()" (click)= "showMoreFollowers=true">Show full list</a>
13 </div> 13 </div>
14 14
15 <div class="col-xl-6 col-md-12"> 15 <div class="col-xl-6 col-md-12">
@@ -17,11 +17,19 @@
17 17
18 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance is not following any other.</div> 18 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance is not following any other.</div>
19 19
20<<<<<<< HEAD
21||||||| parent of 932e04c48 (Change button)
22 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance does not have instances followings.</div>
23
24=======
25 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance does not have instances followings.</div>
26
27>>>>>>> 932e04c48 (Change button)
20 <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer"> 28 <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer">
21 {{ following }} 29 {{ following }}
22 </a> 30 </a>
23 31
24 <a id="showMore" href="javascript:;" *ngIf="!showMoreFollowings" (click)="loadAllFollowings()" (click)= "showMoreFollowings=true">Show full list</a> 32 <a i18n class="showMore" *ngIf="!showMoreFollowings" (click)="loadAllFollowings()" (click)= "showMoreFollowings=true">Show full list</a>
25 </div> 33 </div>
26 34
27</div> 35</div>