summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app/layout/components/tabbar/tabbar.component.html
diff options
context:
space:
mode:
authorjz385p <jegadeesh.babu@att.com>2020-07-07 19:24:27 +0530
committerJegadeesh Babu <jegadeesh.babu@att.com>2020-07-07 14:22:26 +0000
commit0964afff41ff186eb0bb2bd679a34513e90d1015 (patch)
tree0d7cc194bac01540da23a5983e87a99a9162b4aa /portal-FE-common/src/app/layout/components/tabbar/tabbar.component.html
parentdc35cacae0c16b16985effa1459cf96d646811ff (diff)
Audit log,resolved merge conflict
Audit log code merge conflict resolved Issue-ID: PORTAL-941 Change-Id: I1dbe87cee9b471aa0b7319bd8a568826de927c8b Signed-off-by: jz385p <jegadeesh.babu@att.com>
Diffstat (limited to 'portal-FE-common/src/app/layout/components/tabbar/tabbar.component.html')
-rw-r--r--portal-FE-common/src/app/layout/components/tabbar/tabbar.component.html6
1 files changed, 3 insertions, 3 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..8d3d876e 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
@@ -38,7 +38,7 @@
<div style="display: flex; flex-direction:column">
<mat-tab-group [selectedIndex]="selected.value" (selectedIndexChange)="selected.setValue($event)"
- (selectedTabChange)="tabChanged($event)">
+ (selectedTabChange)="tabChanged($event);auditLog($event)" >
<mat-tab [label]="mainTab">
<!--
<mat-grid-list cols="5">
@@ -68,10 +68,10 @@
</mat-tab>
- <mat-tab *ngFor="let tab of tabs; let index = index">
+ <mat-tab *ngFor="let tab of tabs; let index = index" >
<ng-template mat-tab-label>
{{tab.label | elipsis: 13}} &nbsp;
- <i class="icon ion-md-close-circle" (click)="removeTab(index)"></i>
+ <i class="icon ion-md-close-circle" (click)="removeTab(index);removeAppObject(index)"></i>
</ng-template>