Fix Bug 2121: NG-UI uses unmaintained Chokidar version
[osm/NG-UI.git] / src / app / instances / vnf-instances / VNFInstancesComponent.ts
index fdfe9fa..90bb6fe 100644 (file)
@@ -160,7 +160,9 @@ export class VNFInstancesComponent implements OnInit {
             }
             this.dataSource.load(this.vnfInstanceData).then((data: {}) => {
                 this.isLoadingResults = false;
-            }).catch();
+            }).catch((): void => {
+                // Catch Navigation Error
+            });
         }, (error: ERRORDATA) => {
             this.restService.handleError(error, 'get');
             this.isLoadingResults = false;