FM GUI as an NPM library for GUI 2
* added dynamic loading of external modules
* new commands on Alarm to allow create/updating/delete
* new fields in alarm gui
Change-Id: I9a7f4d665618a7949bb02039374974dabf6e5363
diff --git a/web/gui2/src/main/webapp/app/nav/nav.component.ts b/web/gui2/src/main/webapp/app/nav/nav.component.ts
index b543049..058f514 100644
--- a/web/gui2/src/main/webapp/app/nav/nav.component.ts
+++ b/web/gui2/src/main/webapp/app/nav/nav.component.ts
@@ -52,7 +52,7 @@
constructor(
private log: LogService,
private lion: LionService,
- public ns: NavService
+ public ns: NavService,
) {
this.log.debug('NavComponent constructed');
}
@@ -70,6 +70,7 @@
} else {
this.doLion();
}
+ this.ns.getUiViews();
}
/**
@@ -94,5 +95,4 @@
dummyLion(key: string): string {
return '%' + key + '%';
}
-
}