[ACS-8273] [ADW] Testing Angular 15 - Process' tab names are uppercased (#9870)

This commit is contained in:
dominikiwanekhyland 2024-06-27 08:06:05 +02:00 committed by VitoAlbano
parent 311237ef00
commit 8eb78368a6

View File

@ -3,7 +3,7 @@
<div *ngIf="formDefinition.hasTabs()">
<div *ngIf="hasTabs()" class="alfresco-tabs-widget">
<mat-tab-group>
<mat-tab *ngFor="let tab of visibleTabs()" [label]="tab.title | translate | uppercase">
<mat-tab *ngFor="let tab of visibleTabs()" [label]="tab.title | translate ">
<ng-template *ngTemplateOutlet="render; context: { fieldToRender: tab.fields }"></ng-template>
</mat-tab>
</mat-tab-group>