Update angular irish monitor with the latest changes from develop #32

Closed
k.triantafyllou wants to merge 108 commits from develop into angular-16-irish-monitor
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 9b9f817e62 - Show all commits

View File

@ -62,7 +62,7 @@ export class ContextsService {
if(getAll) {
return this.communitiesSubject.getValue();
} else {
return this.communitiesSubject.getValue().filter(community => !community.isPrivate());
return this.communitiesSubject.getValue().filter(community => community.status != 'hidden');
}
}