diff options
author | Sudarshan Kumar <sudarshan.kumar@att.com> | 2020-07-01 15:44:13 +0530 |
---|---|---|
committer | Sudarshan Kumar <sudarshan.kumar@att.com> | 2020-07-01 15:45:20 +0530 |
commit | 3750b01df028e866636893db9e8e6caaab63bbf7 (patch) | |
tree | 24c89b2f168acff58854f1ca31f7599b3aa11eee /portal-FE-common/src/app | |
parent | 885648993b3b2a9e7d36ebfeb96c196674c32e78 (diff) |
Fixed Portal-Multi-Tab Issue
Fixed Portal-Multi-Tab Issue
Issue-ID: PORTAL-936
Change-Id: I71198ef118e0a172fc25507af1fe790c7bcf4015
Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
Diffstat (limited to 'portal-FE-common/src/app')
-rw-r--r-- | portal-FE-common/src/app/layout/components/tabbar/tabbar.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/portal-FE-common/src/app/layout/components/tabbar/tabbar.component.html b/portal-FE-common/src/app/layout/components/tabbar/tabbar.component.html index 31bb197c..2aecbbaa 100644 --- a/portal-FE-common/src/app/layout/components/tabbar/tabbar.component.html +++ b/portal-FE-common/src/app/layout/components/tabbar/tabbar.component.html @@ -86,9 +86,9 @@ <div *ngFor="let tab of tabs; let index = index" [style.display]='tab.active? "inline" : "none"' [style.position]='tab.active? "static" : "absolute"' - [style.height]='tab.active? "calc(100vh)" : "calc(0vh)"'> + [style.height]='tab.active? "45rem" : "45rem"'> - <iframe id="tabframe-{{tab.label.split(' ').join('-')}}" scrolling='yes' frameBorder='0' width='100%' + <iframe id="tabframe-{{tab.label.split(' ').join('-')}}-{{index}}" scrolling='yes' frameBorder='0' width='100%' scrolling='yes' frameBorder='0' width='100%' height='90%' [src]='tab.url'></iframe> </div> |