Angular upgrade
[osm/NG-UI.git] / src / app / operational-view / operational-view-app-actions / OperationalViewAppActionsComponent.ts
index 5a4f48e..f622dbd 100644 (file)
@@ -22,7 +22,7 @@
 import { Component, Injector, Input, OnInit } from '@angular/core';
 import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
 import { URLPARAMS } from 'CommonModel';
-import { isNullOrUndefined } from 'util';
+import { isNullOrUndefined } from 'SharedService';
 /**
  * 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]
         }));
     }