diff options
author | Sunder Tattavarada <statta@research.att.com> | 2020-07-07 14:47:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-07-07 14:47:45 +0000 |
commit | d14317e21822c6693bc442f6041560432eeae950 (patch) | |
tree | b49a777e690f761bc92bfa624b847ca056f5635e /portal-FE-common/src | |
parent | dc35cacae0c16b16985effa1459cf96d646811ff (diff) | |
parent | 3750b01df028e866636893db9e8e6caaab63bbf7 (diff) |
Merge "Fixed Portal-Multi-Tab Issue"
Diffstat (limited to 'portal-FE-common/src')
-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 93dd3450..1e0518b5 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> |