X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fapp-control%2Fapp-control.datasource.ts;h=6a19286c0b71d4c62fd28ddec0b6d90c9b7711d2;hb=3f812ea25d352ec33d07f5ffa4c2aa2a77e8e793;hp=fa98dfad02552443c5eb0e0d4ad7a9efe8933e34;hpb=226fd436a085f717d4cbf81bf1719bdaf1468414;p=portal%2Fric-dashboard.git diff --git a/webapp-frontend/src/app/app-control/app-control.datasource.ts b/webapp-frontend/src/app/app-control/app-control.datasource.ts index fa98dfad..6a19286c 100644 --- a/webapp-frontend/src/app/app-control/app-control.datasource.ts +++ b/webapp-frontend/src/app/app-control/app-control.datasource.ts @@ -59,9 +59,9 @@ export class AppControlDataSource extends DataSource { 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))