Integrate EPSDK-FW library for auth and users
[portal/ric-dashboard.git] / webapp-frontend / src / app / app-control / app-control.datasource.ts
index fa98dfa..6a19286 100644 (file)
@@ -59,9 +59,9 @@ export class AppControlDataSource extends DataSource<XappControlRow> {
     this.loadingSubject.next(true);
     this.appMgrSvc.getDeployed()
       .pipe(
-        catchError( (err: HttpErrorResponse) => {
-          console.log('AppControlDataSource failed: ' + err.message);
-          this.notificationService.error('Failed to get applications.');
+        catchError( (her: HttpErrorResponse) => {
+          console.log('AppControlDataSource failed: ' + her.message);
+          this.notificationService.error('Failed to get applications: ' + her.message);
           return of([]);
         }),
         finalize(() => this.loadingSubject.next(false))