[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:
parent
8f54381b96
commit
5f458d8fde
|
@ -106,8 +106,7 @@ 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;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
|
@ -117,7 +116,6 @@ export class SubCategory {
|
||||||
this.defaultId = defaultId;
|
this.defaultId = defaultId;
|
||||||
this.charts = [];
|
this.charts = [];
|
||||||
this.numbers = [];
|
this.numbers = [];
|
||||||
this.recommendedFor = [];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -156,8 +154,7 @@ 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;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
|
@ -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 = [];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue