diff options
author | Arjun M Gupta <arjun.manigupta@fujitsu.com> | 2020-03-15 21:57:57 +0000 |
---|---|---|
committer | Arjun M Gupta <arjun.manigupta@us.fujitsu.com> | 2020-03-15 23:10:50 +0000 |
commit | 534586d7a62273a4f094c3cc0785249352ce79f3 (patch) | |
tree | 1e4ff4a918b17cb34df41c7a94665381dc96f12f /usecaseui-portal/src/app/app.component.ts | |
parent | 4b13172177f9d2f03b5fcbcd5e9f3174217ff502 (diff) |
USECASEUI-414 Add Inter-Domain Link provisioning support for MDONS
Issue-ID: USECASEUI-414
Change-Id: Ic9f94e4637a5b98ab885e6189842b55a0b38955b
Signed-off-by: Arjun M Gupta <arjun.manigupta@us.fujitsu.com>
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 + } + } } |