aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components
diff options
context:
space:
mode:
authorIdan Amit <ia096e@intl.att.com>2018-01-18 19:07:38 +0200
committerIdan Amit <ia096e@intl.att.com>2018-01-21 06:52:00 +0000
commit30e728d280b77193500a7f0941db336ee60b80a6 (patch)
treef57f86948f47f3dd2333e21e12e5cdc1ccaeff33 /catalog-ui/src/app/ng2/components
parenta7735509a29580d0bf8a9eac92f4402940b74517 (diff)
Update designer configuraiton file
Updated the designer configuration file to support the new display options Made sure that the old code still works Change-Id: Ia63cb89b0f8cb92fc86e0804afe7e2c2caea0541 Issue-ID: SDC-938 Signed-off-by: Idan Amit <ia096e@intl.att.com>
Diffstat (limited to 'catalog-ui/src/app/ng2/components')
-rw-r--r--catalog-ui/src/app/ng2/components/layout/top-nav/top-nav.component.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/catalog-ui/src/app/ng2/components/layout/top-nav/top-nav.component.ts b/catalog-ui/src/app/ng2/components/layout/top-nav/top-nav.component.ts
index 846b84c69f..632b2be4cc 100644
--- a/catalog-ui/src/app/ng2/components/layout/top-nav/top-nav.component.ts
+++ b/catalog-ui/src/app/ng2/components/layout/top-nav/top-nav.component.ts
@@ -122,7 +122,9 @@ export class TopNavComponent {
});
_.each(DesignersConfiguration.designers, (designer: Designer) => {
- tmpArray.push(new MenuItem(designer.displayName, null, "designers", "goToState", {path: designer.designerStateUrl}, null));
+ if (designer.designerDisplayOptions["top"]) {
+ tmpArray.push(new MenuItem(designer.designerDisplayOptions["top"].displayName, null, "designers", "goToState", {path: designer.designerStateUrl}, null));
+ }
})
}