summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/ui/tabs/tab
diff options
context:
space:
mode:
authorKrupaNagabhushan <krupa.nagabhushan@est.tech>2022-04-22 15:48:40 +0100
committerMichael Morris <michael.morris@est.tech>2022-05-09 15:47:29 +0000
commit401f001b36be5508dd8c129430126e49e68d1b5b (patch)
tree8e672f9cc78557e6298382a87999d3c5def9cf8c /catalog-ui/src/app/ng2/components/ui/tabs/tab
parent9f25403b73e8c66d0c0d9f3e8b05d8b5069bb783 (diff)
Fix inputs/policy tabs view for self and instances
Issue-ID: SDC-3983 Signed-off-by: KrupaNagabhushan <krupa.nagabhushan@est.tech> Change-Id: I2b1f0e5c7f6e55765f35ac807926725343a8aa9e
Diffstat (limited to 'catalog-ui/src/app/ng2/components/ui/tabs/tab')
-rw-r--r--catalog-ui/src/app/ng2/components/ui/tabs/tab/tab.component.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/catalog-ui/src/app/ng2/components/ui/tabs/tab/tab.component.ts b/catalog-ui/src/app/ng2/components/ui/tabs/tab/tab.component.ts
index bad7b80a51..e0eacdc43b 100644
--- a/catalog-ui/src/app/ng2/components/ui/tabs/tab/tab.component.ts
+++ b/catalog-ui/src/app/ng2/components/ui/tabs/tab/tab.component.ts
@@ -24,7 +24,7 @@ import { ViewEncapsulation } from '@angular/core';
@Component({
selector: 'tab',
template: `
- <div *ngIf="active" class="tab-content">
+ <div *ngIf="active && show" class="tab-content">
<ng-content></ng-content>
</div>
`,
@@ -33,6 +33,7 @@ import { ViewEncapsulation } from '@angular/core';
export class Tab {
@Input('tabTitle') title: string;
@Input() active:boolean = false;
+ @Input() show:boolean = true;
@Input() indication?: number;
}