X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Foperational-view%2Foperational-view-app-actions%2FOperationalViewAppActionsComponent.ts;h=acee5ed286f85045b6661659c172d9265933e6ed;hb=0a34dfa32165036b380ec6ac493469b34007df0a;hp=5a4f48ee26573b11efc3c410d8678721679754f1;hpb=40cc37ef2bbc4aac5debc9dea0baeb6dbd87a2d7;p=osm%2FNG-UI.git diff --git a/src/app/operational-view/operational-view-app-actions/OperationalViewAppActionsComponent.ts b/src/app/operational-view/operational-view-app-actions/OperationalViewAppActionsComponent.ts index 5a4f48e..acee5ed 100644 --- a/src/app/operational-view/operational-view-app-actions/OperationalViewAppActionsComponent.ts +++ b/src/app/operational-view/operational-view-app-actions/OperationalViewAppActionsComponent.ts @@ -19,10 +19,10 @@ /** * @file Page for Operational View App actions Component */ +import { isNullOrUndefined } from 'util'; import { Component, Injector, Input, OnInit } from '@angular/core'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { URLPARAMS } from 'CommonModel'; -import { isNullOrUndefined } from 'util'; /** * Creating component * @Component takes OperationalViewAppActionsComponent.html as template url @@ -60,6 +60,7 @@ export class OperationalViewAppActionsComponent implements OnInit { this.actionsData = Object.keys(this.params.actions).map((key: string): Object => ( { actions: key, + // eslint-disable-next-line security/detect-object-injection description: this.params.actions[key] })); }