diff --git a/connect/community/community.service.ts b/connect/community/community.service.ts index a4cb9ee4..9d11ef0e 100644 --- a/connect/community/community.service.ts +++ b/connect/community/community.service.ts @@ -92,6 +92,8 @@ export class CommunityService { const community: CommunityInfo = new CommunityInfo(); community.title = resData.name; community.shortTitle = resData.shortName; + community.displayTitle = resData.displayName?resData.displayName:resData.name; + community.displayShortTitle = resData.displayShortName?resData.displayShortName:resData.shortName; community.communityId = resData.id; community.queryId = resData.queryId; community.logoUrl = resData.logoUrl; diff --git a/connect/community/communityInfo.ts b/connect/community/communityInfo.ts index 72ac70fc..8b124785 100644 --- a/connect/community/communityInfo.ts +++ b/connect/community/communityInfo.ts @@ -4,6 +4,8 @@ import {SelectionCriteria} from "../../utils/entities/contentProvider"; export class CommunityInfo { title: string; shortTitle:string; + displayTitle: string; + displayShortTitle:string; communityId: string; queryId: string; type: string; diff --git a/dashboard/plugins/components/gateway-information/plugin-gateway-information.component.html b/dashboard/plugins/components/gateway-information/plugin-gateway-information.component.html index 10bbb476..7ec6f7d8 100644 --- a/dashboard/plugins/components/gateway-information/plugin-gateway-information.component.html +++ b/dashboard/plugins/components/gateway-information/plugin-gateway-information.component.html @@ -7,10 +7,10 @@