From e033cdf0f4cedec0e17d282f8e8e8c1eca8dbf4d Mon Sep 17 00:00:00 2001 From: Marie Verdonck Date: Mon, 15 Mar 2021 20:57:51 +0100 Subject: [PATCH] PR #1049: Reduced number of communities/collections in comcol tree retrieved per page to 20 --- src/app/community-list-page/community-list-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/community-list-page/community-list-service.ts b/src/app/community-list-page/community-list-service.ts index 18413b5762..cbf70ca39a 100644 --- a/src/app/community-list-page/community-list-service.ts +++ b/src/app/community-list-page/community-list-service.ts @@ -102,7 +102,7 @@ const communityListStateSelector = (state: AppState) => state.communityList; const expandedNodesSelector = createSelector(communityListStateSelector, (communityList: CommunityListState) => communityList.expandedNodes); const loadingNodeSelector = createSelector(communityListStateSelector, (communityList: CommunityListState) => communityList.loadingNode); -export const MAX_COMCOLS_PER_PAGE = 50; +export const MAX_COMCOLS_PER_PAGE = 20; /** * Service class for the community list, responsible for the creating of the flat list used by communityList dataSource