fix: wrap label inside div with role=gridcell to satisfy row role requirement

This commit is contained in:
Shivangi Shree
2025-06-12 03:41:44 -04:00
parent 31c2cb2162
commit 15ae7bf274

View File

@@ -236,7 +236,7 @@
</button>
</mat-menu>
</div>
<div role="gridcell">
<label *ngIf="multiselect"
(keydown.enter)="onEnterKeyPressed(row, $any($event))"
(click)="onCheckboxLabelClick(row, $event)"
@@ -258,6 +258,8 @@
</mat-checkbox>
</label>
</div>
<div
*ngFor="let col of getVisibleColumns(); let lastColumn = last;"
role="gridcell"