[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,7 +106,6 @@ 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;
|
||||
|
@ -117,7 +116,6 @@ export class SubCategory {
|
|||
this.defaultId = defaultId;
|
||||
this.charts = [];
|
||||
this.numbers = [];
|
||||
this.recommendedFor = [];
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -156,7 +154,6 @@ 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;
|
||||
|
@ -169,7 +166,6 @@ export class Indicator {
|
|||
this.visibility = visibility;
|
||||
this.defaultId = defaultId;
|
||||
this.indicatorPaths = indicatorPaths;
|
||||
this.recommendedFor = [];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -18,6 +18,7 @@ export interface EnvProperties {
|
|||
statisticsFrameAPIURL?: string;
|
||||
statisticsFrameNewAPIURL?: string;
|
||||
useNewStatistisTool?: boolean;
|
||||
disableFrameLoad?:boolean
|
||||
statisticsAPIURL?: string;
|
||||
impactFactorsAPIURL?: string;
|
||||
claimsAPIURL?: string;
|
||||
|
|
Loading…
Reference in New Issue