aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
authorMahdiTurki <mahditurki123@yahoo.fr>2020-04-27 20:37:56 +0100
committerChocobozzz <me@florianbigard.com>2020-12-14 09:57:41 +0100
commit92f62f108bafac45546dbd3c6e64da769f2a4908 (patch)
treee4f0445afa5135fd4d2a09757b35650800a89604 /client
parent2ce949454f5305be2bf3b1a66385b1c16cbb791f (diff)
downloadPeerTube-92f62f108bafac45546dbd3c6e64da769f2a4908.tar.gz
PeerTube-92f62f108bafac45546dbd3c6e64da769f2a4908.tar.zst
PeerTube-92f62f108bafac45546dbd3c6e64da769f2a4908.zip
Fix coding style
Diffstat (limited to 'client')
-rw-r--r--client/src/app/+about/about-follows/about-follows.component.ts2
1 files changed, 1 insertions, 1 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 00bd48c9c..bdee5cf78 100644
--- a/client/src/app/+about/about-follows/about-follows.component.ts
+++ b/client/src/app/+about/about-follows/about-follows.component.ts
@@ -97,7 +97,7 @@ export class AboutFollowsComponent implements OnInit {
97 .subscribe( 97 .subscribe(
98 resultList => { 98 resultList => {
99 const newFollowings = resultList.data.map(r => r.following.host) 99 const newFollowings = resultList.data.map(r => r.following.host)
100 if (this.followings.length===0) this.followings = this.followings.concat(newFollowings) 100 if (this.followings.length === 0) this.followings = this.followings.concat(newFollowings)
101 101
102 else this.moreFollowings = this.moreFollowings.concat(newFollowings) 102 else this.moreFollowings = this.moreFollowings.concat(newFollowings)
103 103