From 2f55ac32f12062b3325537ac8ec54cf6e231507f Mon Sep 17 00:00:00 2001 From: "argiro.kokogiannaki" Date: Fri, 12 Jun 2020 09:56:38 +0000 Subject: [PATCH] [Library|Trunk] Change Topic.iconUrl to icon git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@58900 d315682c-612b-4755-9ff5-7f18f6832af3 --- monitor/entities/stakeholder.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/monitor/entities/stakeholder.ts b/monitor/entities/stakeholder.ts index 57f48e20..4ad7287a 100644 --- a/monitor/entities/stakeholder.ts +++ b/monitor/entities/stakeholder.ts @@ -64,9 +64,9 @@ export class Topic { isPublic: boolean; defaultId: string; categories: Category[]; - iconUrl: string; + icon: string; - constructor(name: string, description: string, alias: string, isActive: boolean, isPublic: boolean, defaultId: string = null, iconUrl: string = null) { + constructor(name: string, description: string, alias: string, isActive: boolean, isPublic: boolean, defaultId: string = null, icon: string = null) { this._id = null; this.name = name; this.description = description; @@ -75,7 +75,7 @@ export class Topic { this.isPublic = isPublic; this.defaultId = defaultId; this.categories = []; - this.iconUrl = iconUrl; + this.icon = icon; } }