aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about-follows/about-follows.component.ts
diff options
context:
space:
mode:
authormahdi <mahditurki123@yahoo.fr>2020-12-12 22:19:01 +0100
committerChocobozzz <me@florianbigard.com>2020-12-14 09:57:41 +0100
commited8b4014cee544512addfbd75627d2a1cfa0e764 (patch)
tree1a354164d4453928719a2ee9de14e0627efe8a28 /client/src/app/+about/about-follows/about-follows.component.ts
parent2b6ea97f1c5f14608019b661ca4c4c8d86f46578 (diff)
downloadPeerTube-ed8b4014cee544512addfbd75627d2a1cfa0e764.tar.gz
PeerTube-ed8b4014cee544512addfbd75627d2a1cfa0e764.tar.zst
PeerTube-ed8b4014cee544512addfbd75627d2a1cfa0e764.zip
Show count of instances and fix show/hide button
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.ts4
1 files changed, 2 insertions, 2 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 bdee5cf78..b808c1ac9 100644
--- a/client/src/app/+about/about-follows/about-follows.component.ts
+++ b/client/src/app/+about/about-follows/about-follows.component.ts
@@ -22,13 +22,13 @@ export class AboutFollowsComponent implements OnInit {
22 followersPagination: ComponentPagination = { 22 followersPagination: ComponentPagination = {
23 currentPage: 1, 23 currentPage: 1,
24 itemsPerPage: 20, 24 itemsPerPage: 20,
25 totalItems: null 25 totalItems: 0
26 } 26 }
27 27
28 followingsPagination: ComponentPagination = { 28 followingsPagination: ComponentPagination = {
29 currentPage: 1, 29 currentPage: 1,
30 itemsPerPage: 20, 30 itemsPerPage: 20,
31 totalItems: null 31 totalItems: 0
32 } 32 }
33 33
34 sort: SortMeta = { 34 sort: SortMeta = {