[Library | Trunk]

- remove recommendedFor attribute in Stakeholder
- add property disableFrameLoad




git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@60116 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
argiro.kokogiannaki 2020-12-11 10:11:22 +00:00
parent 8f54381b96
commit 5f458d8fde
2 changed files with 3 additions and 6 deletions

View File

@ -106,8 +106,7 @@ export class SubCategory {
defaultId: string;
charts: Section[];
numbers: Section[];
recommendedFor: string[];
constructor(name: string, description: string, alias: string, visibility: Visibility, defaultId: string = null) {
this._id = null;
this.name = name;
@ -117,7 +116,6 @@ export class SubCategory {
this.defaultId = defaultId;
this.charts = [];
this.numbers = [];
this.recommendedFor = [];
}
}
@ -156,8 +154,7 @@ export class Indicator {
visibility: Visibility;
defaultId: string;
indicatorPaths: IndicatorPath[];
recommendedFor: string[];
constructor(name: string, description: string, additionalDescription:string, type: IndicatorType, width: IndicatorSize,height: IndicatorSize, visibility: Visibility, indicatorPaths: IndicatorPath[], defaultId: string = null) {
this._id = null;
this.name = name;
@ -169,7 +166,6 @@ export class Indicator {
this.visibility = visibility;
this.defaultId = defaultId;
this.indicatorPaths = indicatorPaths;
this.recommendedFor = [];
}
}

View File

@ -18,6 +18,7 @@ export interface EnvProperties {
statisticsFrameAPIURL?: string;
statisticsFrameNewAPIURL?: string;
useNewStatistisTool?: boolean;
disableFrameLoad?:boolean
statisticsAPIURL?: string;
impactFactorsAPIURL?: string;
claimsAPIURL?: string;