Skip to content

Commit

Permalink
feat: filter selection aria label set
Browse files Browse the repository at this point in the history
  • Loading branch information
markuczy committed Mar 4, 2024
1 parent 02fd3be commit 83c19ff
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<ng-container *ngFor="let column of columns">
<th *ngIf="column.sortable || column.filterable; else simpleHeader" scope="col">
<div class="table-header-wrapper">
<span>{{ column.nameKey | translate }}</span>
<span id="{{column.id}}-header-name">{{ column.nameKey | translate }}</span>
<span class="icon-button-header-wrapper">
<button
*ngIf="column.sortable"
Expand All @@ -128,6 +128,7 @@
appendTo="body"
(onClick)="onFilterClick(column)"
[title]="'OCX_DATA_TABLE.FILTER_TITLE' | translate"
ariaLabelledBy="{{column.id}}-header-name"
>
<ng-template pTemplate="selectedItems" let-value>
<div
Expand Down

0 comments on commit 83c19ff

Please sign in to comment.