Skip to content

Commit

Permalink
AAE-29042 Added subtitle to arial-label (#10491)
Browse files Browse the repository at this point in the history
  • Loading branch information
BSekula authored Dec 13, 2024
1 parent b58f1c9 commit fff623b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
'adf-datatable__header--sorted-asc': isColumnSorted(col, 'asc'),
'adf-datatable__header--sorted-desc': isColumnSorted(col, 'desc')}"
[ngStyle]="(col.width) && !lastColumn && {'flex': getFlexValue(col)}"
[attr.aria-label]="col.title | translate"
[attr.aria-label]="(col.title | translate) + (col.subtitle ? ' ' + col.subtitle : '')"
(click)="onColumnHeaderClick(col, $event)"
(keyup.enter)="onColumnHeaderClick(col, $event)"
role="columnheader"
Expand Down

0 comments on commit fff623b

Please sign in to comment.