Merge "Upgrade E2Mgr spec to version 2019-08-15"
authorManoop Talasila <talasila@research.att.com>
Fri, 16 Aug 2019 14:30:06 +0000 (14:30 +0000)
committerGerrit Code Review <gerrit@o-ran-sc.org>
Fri, 16 Aug 2019 14:30:06 +0000 (14:30 +0000)
docs/release-notes.rst
webapp-frontend/src/app/app-control/app-control.component.ts

index 67b2d4d..cf9670e 100644 (file)
@@ -37,6 +37,7 @@ Version 1.2.0, 15 Aug 2019
 * Update E2 manager client to spec version 20190815
 * Add controller for page refresh of Angular routes
 * Extend E2 mock configuration for demo purposes
+* Add pattern for matching AC/admin application name
 
 Version 1.0.5, 5 July 2019
 --------------------------
index 35c910d..6ef4b16 100644 (file)
@@ -55,11 +55,12 @@ export class AppControlComponent implements OnInit {
 
   controlApp(app: XappControlRow): void {
     // TODO: identify apps without hardcoding to names
-    const acAppPattern =  /[Aa][Dd][Mm][Ii][Ss]{2}[Ii][Oo][Nn]/;
+    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 (acAppPattern.test(app.xapp)) {
+    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']);