remove ANR xapp
[portal/ric-dashboard.git] / webapp-frontend / src / app / app-control / app-control.component.ts
index 07b931d..c97a195 100644 (file)
@@ -60,14 +60,9 @@ export class AppControlComponent implements OnInit {
     // TODO: identify apps without hardcoding to names
     const acAppPattern0 =  /[Aa][Dd][Mm][Ii][Nn]/;
     const acAppPattern1 =  /[Aa][Dd][Mm][Ii][Ss]{2}[Ii][Oo][Nn]/;
-    const anrAppPattern0 = /ANR/;
-    const anrAppPattern1 = /[Aa][Uu][Tt][Oo][Mm][Aa][Tt][Ii][Cc]/;
-    const anrAppPattern2 = /[Nn][Ee][Ii][Gg][Hh][Bb][Oo][Rr]/;
     if (acAppPattern0.test(app.xapp) || acAppPattern1.test(app.xapp)) {
       this.router.navigate(['/ac']);
-    } else if (anrAppPattern0.test(app.xapp) || (anrAppPattern1.test(app.xapp) && anrAppPattern2.test(app.xapp))) {
-      this.router.navigate(['/anr']);
-    } else {
+    }  else {
       this.errorDialogService.displayError('No control available for ' + app.xapp + ' (yet)');
     }
   }