From f0f9bb5dd02308ad5eeb387ed222794470e34ca9 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Fri, 4 Aug 2023 15:29:02 +0300 Subject: [PATCH] Fix mockCommunityInfo in aggregators.ts --- src/app/utils/aggregators.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/utils/aggregators.ts b/src/app/utils/aggregators.ts index 5160784..68009c8 100644 --- a/src/app/utils/aggregators.ts +++ b/src/app/utils/aggregators.ts @@ -57,7 +57,7 @@ export class PortalAggregators { } public static getCommunityInfo(): any { - return Portal.getMockCommunityInfo(PortalAggregators.eoscInfo.menuId, PortalAggregators.disabled.entities,PortalAggregators.disabled.pages); + return Portal.getMockCommunityInfo(PortalAggregators.eoscInfo.menuId, PortalAggregators.eoscInfo.title, PortalAggregators.disabled.entities,PortalAggregators.disabled.pages); } }