X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fsdn-controller%2Fsdn-controller-details%2FSDNControllerDetailsComponent.ts;h=ef2f350985a24716f8a424b818cf785ed770dc71;hb=0a34dfa32165036b380ec6ac493469b34007df0a;hp=589f13effb239916c6320ce3fda6d99882d808b0;hpb=40cc37ef2bbc4aac5debc9dea0baeb6dbd87a2d7;p=osm%2FNG-UI.git diff --git a/src/app/sdn-controller/sdn-controller-details/SDNControllerDetailsComponent.ts b/src/app/sdn-controller/sdn-controller-details/SDNControllerDetailsComponent.ts index 589f13e..ef2f350 100644 --- a/src/app/sdn-controller/sdn-controller-details/SDNControllerDetailsComponent.ts +++ b/src/app/sdn-controller/sdn-controller-details/SDNControllerDetailsComponent.ts @@ -206,12 +206,15 @@ export class SDNControllerDetailsComponent implements OnInit, OnDestroy { /** Compose new SDN Controller @public */ public composeSDN(): void { + // eslint-disable-next-line security/detect-non-literal-fs-filename const modalRef: NgbModalRef = this.modalService.open(NewSDNControllerComponent, { backdrop: 'static' }); modalRef.result.then((result: MODALCLOSERESPONSEDATA) => { if (result) { this.sharedService.callData(); } - }).catch(); + }).catch((): void => { + // Catch Navigation Error + }); } /** @@ -237,11 +240,12 @@ export class SDNControllerDetailsComponent implements OnInit, OnDestroy { } this.dataSource.load(this.sdnData).then((data: {}) => { this.isLoadingResults = false; - }).catch(); + }).catch((): void => { + // Catch Navigation Error + }); }, (error: ERRORDATA) => { this.restService.handleError(error, 'get'); this.isLoadingResults = false; }); } - }