diff --git a/monitor/entities/stakeholder.ts b/monitor/entities/stakeholder.ts index b06375fe..c24f1542 100644 --- a/monitor/entities/stakeholder.ts +++ b/monitor/entities/stakeholder.ts @@ -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 = []; } } diff --git a/utils/properties/env-properties.ts b/utils/properties/env-properties.ts index 3104229a..5edfab7a 100644 --- a/utils/properties/env-properties.ts +++ b/utils/properties/env-properties.ts @@ -18,6 +18,7 @@ export interface EnvProperties { statisticsFrameAPIURL?: string; statisticsFrameNewAPIURL?: string; useNewStatistisTool?: boolean; + disableFrameLoad?:boolean statisticsAPIURL?: string; impactFactorsAPIURL?: string; claimsAPIURL?: string;