[Library|Trunk]

Communities service: set behaviorSubject to null



git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@56805 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
argiro.kokogiannaki 2019-07-30 08:56:35 +00:00
parent 99a70f0aa6
commit db2371fee7
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ export class CommunitiesService {
public communities: BehaviorSubject<CommunityInfo[]> = null;
constructor(private http: HttpClient) {
this.communities = new BehaviorSubject([]);
this.communities = new BehaviorSubject(null);
}
updateCommunities(properties: EnvProperties, url: string) {