[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
This commit is contained in:
argiro.kokogiannaki 2020-06-12 09:56:38 +00:00
parent 24b204f8b3
commit 2f55ac32f1
1 changed files with 3 additions and 3 deletions

View File

@ -64,9 +64,9 @@ export class Topic {
isPublic: boolean; isPublic: boolean;
defaultId: string; defaultId: string;
categories: Category[]; 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._id = null;
this.name = name; this.name = name;
this.description = description; this.description = description;
@ -75,7 +75,7 @@ export class Topic {
this.isPublic = isPublic; this.isPublic = isPublic;
this.defaultId = defaultId; this.defaultId = defaultId;
this.categories = []; this.categories = [];
this.iconUrl = iconUrl; this.icon = icon;
} }
} }