From 285cce6767ae8758dff2fd819e987c6a66935348 Mon Sep 17 00:00:00 2001 From: "argiro.kokogiannaki" Date: Fri, 14 Jun 2019 12:40:15 +0000 Subject: [PATCH] [Admin|TRunk] update call to getCommunityInformation in stats page with the parameters change git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-admin-portal/trunk@56086 d315682c-612b-4755-9ff5-7f18f6832af3 --- src/app/pages/stats/stats.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pages/stats/stats.component.ts b/src/app/pages/stats/stats.component.ts index 82a69ab..22fb307 100644 --- a/src/app/pages/stats/stats.component.ts +++ b/src/app/pages/stats/stats.component.ts @@ -129,7 +129,7 @@ export class StatsComponent implements OnInit { this._router.navigate(['/user-info'], { queryParams: { "errorCode": LoginErrorCodes.NOT_VALID, "redirectUrl": this._router.url} }); } else { //console.log(`calling ${this.properties.adminToolsAPIURL}/communityFull/${this.communityId}`); - this.configService.getCommunityInformation(this.properties.adminToolsAPIURL, this.communityId).subscribe( + this.configService.getCommunityInformation(this.properties, this.communityId).subscribe( res => { this.communityInfo = res; },