Skip to content

Commit

Permalink
#219 fix, removing unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladyslav Moskalenko committed Dec 13, 2024
1 parent b5f55ef commit f61c104
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xc/xc-table/xc-table.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</ng-container>
<!-- Container template view of a table body row -->
<ng-container *ngFor="let column of columns; let i=index" [matColumnDef]="getColumnID(column)">
<th mat-header-cell *matHeaderCellDef attr.aria-label="{{i18n.translate(column.name) || column.name}}" scope="col">
<th mat-header-cell *matHeaderCellDef attr.aria-label="{{i18n.translate(column.name)}}" scope="col">
<span mat-sort-header [disabled]="column.disableSort">{{i18n.translate(column.name) || '&nbsp;'}}</span>
<div class="filter-container">
<xc-template
Expand All @@ -49,7 +49,7 @@
[class.shrink]="column.shrink"
[class.break]="column.break"
[class.pre]="column.pre"
[attr.aria-label]="getCellData(row, column.path) ? (i18n.translate(column.name) || column.name ) : null"
[attr.aria-label]="getCellData(row, column.path) ? (i18n.translate(column.name)) : null"
>
<ng-container *xc-var="getCellData(row, column.path); let cellData">

Expand Down

0 comments on commit f61c104

Please sign in to comment.