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

View File

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