|
102 | 102 | <% if(options.enableVersionSupport) { %>
|
103 | 103 | <th data-test="custom-column-header" mat-header-cell *matHeaderCellDef mat-sort-header
|
104 | 104 | [resizeColumn]="true" [index]="<%= customColumnIndex %>" (dragging)='dragging = $event'>
|
105 |
| - {{'<%= options.selectedModelTypeName.toLowerCase() %>.v<%= options.formatedAspectModelVersion %>.customColumn.<%= columnName %>' | transloco }} |
| 105 | + <span data-test="table-header-text"> |
| 106 | + {{'<%= options.selectedModelTypeName.toLowerCase() %>.v<%= options.formatedAspectModelVersion %>.customColumn.<%= columnName %>' | transloco }} |
| 107 | + </span> |
| 108 | + <mat-icon |
| 109 | + class="table-header-icon material-icons" |
| 110 | + *ngIf="!headerTooltipsOff" |
| 111 | + [matTooltip]="'<%= options.selectedModelTypeName.toLowerCase() %>.v<%= options.formatedAspectModelVersion %>.<%= columnName %>.description' | transloco" |
| 112 | + (click)="$event.stopPropagation()" |
| 113 | + matTooltipClass="table-column-tooltip" |
| 114 | + matTooltipPosition="above" |
| 115 | + data-test="column-info-icon" |
| 116 | + >info_outlined</mat-icon> |
106 | 117 | </th>
|
107 | 118 | <% } else { %>
|
108 | 119 | <th data-test="custom-column-header" mat-header-cell *matHeaderCellDef mat-sort-header
|
109 | 120 | [resizeColumn]="true" [index]="<%= customColumnIndex %>" (dragging)='dragging = $event'>
|
110 |
| - {{ '<%= options.selectedModelTypeName.toLowerCase() %>.customColumn.<%= columnName %>' | transloco }} |
| 121 | + <span data-test="table-header-text"> |
| 122 | + {{ '<%= options.selectedModelTypeName.toLowerCase() %>.customColumn.<%= columnName %>' | transloco }} |
| 123 | + </span> |
| 124 | + <mat-icon |
| 125 | + class="table-header-icon material-icons" |
| 126 | + *ngIf="!headerTooltipsOff" |
| 127 | + [matTooltip]="'<%= options.selectedModelTypeName.toLowerCase() %>.<%= columnName %>.description' | transloco" |
| 128 | + (click)="$event.stopPropagation()" |
| 129 | + matTooltipClass="table-column-tooltip" |
| 130 | + matTooltipPosition="above" |
| 131 | + data-test="column-info-icon" |
| 132 | + >info_outlined</mat-icon> |
111 | 133 | </th>
|
112 | 134 | <% } %>
|
113 | 135 | <td data-test="custom-column-cell" mat-cell *matCellDef="let row">
|
|
0 commit comments