Skip to content

Commit c5344b9

Browse files
authored
Merge pull request #202 from assureclaims/feature/RMA-104671
RMA-104671: on behalf of swarna- Id Field (static values for ID)not present for certain elements in Policy Interface Settings page
2 parents 91c9060 + 45886a3 commit c5344b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

projects/dxc-ngx-cdk/src/lib/dxc-tabs/dxc-tab/dxc-tab.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<img *ngIf="iconSrc" src="{{ iconSrc }}" />
55
<ng-content select="dxc-tab-icon"></ng-content>
66
<div class="dxc-tab-label">
7-
<span>{{ label }}</span>
7+
<span [id]="name+'_tab'">{{ label }}</span>
88
</div>
99
<dxc-badge
1010
*ngIf="notificationNumber"

projects/dxc-ngx-cdk/src/lib/dxc-tabs/dxc-tab/dxc-tab.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class DxcTabComponent implements OnChanges {
5454
@Output() onTabHover: EventEmitter<number> = new EventEmitter<number>();
5555

5656
@Input() id: number;
57-
57+
@Input() name: string;
5858
showDotIndicator: boolean = false;
5959
labelClass: string;
6060
@ViewChild(MatTab, { static: false })

0 commit comments

Comments
 (0)