diff options
author | 2020-03-18 11:29:03 +0000 | |
---|---|---|
committer | 2020-03-18 11:29:03 +0000 | |
commit | f2e06f0f4142cf0a2346d5b922f98f5cf2ebbfcf (patch) | |
tree | 7eb0d8d7d00a6601f73085e0bde901086ae25783 /usecaseui-portal/src/app/app.component.ts | |
parent | 7536f11ccaf6a2e3e486aed21b50f2a5c17ebdfb (diff) | |
parent | 534586d7a62273a4f094c3cc0785249352ce79f3 (diff) |
Merge "USECASEUI-414 Add Inter-Domain Link provisioning support for MDONS"
Diffstat (limited to 'usecaseui-portal/src/app/app.component.ts')
-rw-r--r-- | usecaseui-portal/src/app/app.component.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/app.component.ts b/usecaseui-portal/src/app/app.component.ts index 90d5606f..7abec444 100644 --- a/usecaseui-portal/src/app/app.component.ts +++ b/usecaseui-portal/src/app/app.component.ts @@ -81,5 +81,13 @@ export class AppComponent { return false } } + // Whether the submenu expands the identifier + get network_flag () { + if(!this.url.indexOf('network')){ + return true + }else{ + return false + } + } } |