aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about-follows/about-follows.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+about/about-follows/about-follows.component.ts')
-rw-r--r--client/src/app/+about/about-follows/about-follows.component.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/+about/about-follows/about-follows.component.ts b/client/src/app/+about/about-follows/about-follows.component.ts
index d88974b59..e5526248c 100644
--- a/client/src/app/+about/about-follows/about-follows.component.ts
+++ b/client/src/app/+about/about-follows/about-follows.component.ts
@@ -14,8 +14,8 @@ export class AboutFollowsComponent implements OnInit {
14 followers: string[] = [] 14 followers: string[] = []
15 followings: string[] = [] 15 followings: string[] = []
16 16
17 showMoreFollowers = false; 17 showMoreFollowers = false
18 showMoreFollowings = false; 18 showMoreFollowings = false
19 19
20 followersPagination: ComponentPagination = { 20 followersPagination: ComponentPagination = {
21 currentPage: 1, 21 currentPage: 1,
@@ -49,7 +49,7 @@ export class AboutFollowsComponent implements OnInit {
49 } 49 }
50 50
51 loadAllFollowings () { 51 loadAllFollowings () {
52 while(hasMoreItems(this.followingsPagination)) { 52 while (hasMoreItems(this.followingsPagination)) {
53 this.followingsPagination.currentPage += 1 53 this.followingsPagination.currentPage += 1
54 54
55 this.loadMoreFollowings() 55 this.loadMoreFollowings()
@@ -57,10 +57,10 @@ export class AboutFollowsComponent implements OnInit {
57 } 57 }
58 58
59 loadAllFollowers () { 59 loadAllFollowers () {
60 while(hasMoreItems(this.followersPagination)) { 60 while (hasMoreItems(this.followersPagination)) {
61 this.followersPagination.currentPage += 1 61 this.followersPagination.currentPage += 1
62 62
63 this.loadMoreFollowers(); 63 this.loadMoreFollowers()
64 } 64 }
65 } 65 }
66 66