X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fapp-control%2Fapp-control.component.ts;h=c97a1950d7a761c09a07d2dfe178fd13edfef0b6;hb=ef2afb662e0051397034e6fd3ece039a04c684c0;hp=07b931d9b8712591eed0dda860fdd0ad08a25c56;hpb=44203c43bb16a87eb54cc97431a026e111842c97;p=portal%2Fric-dashboard.git diff --git a/webapp-frontend/src/app/app-control/app-control.component.ts b/webapp-frontend/src/app/app-control/app-control.component.ts index 07b931d9..c97a1950 100644 --- a/webapp-frontend/src/app/app-control/app-control.component.ts +++ b/webapp-frontend/src/app/app-control/app-control.component.ts @@ -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)'); } }