https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42233 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david@davidnind.com --- Comment #4 from David Nind <david@davidnind.com> --- Testing notes (using KTD): 1. Before the patch (normal screen size - not narrowed so that responsive controls are shown), axe DevTools has an issue for the first table header column - "Table header text should not be empty". 2. Before the patch, inspecting the HTML source: ... <tr> <th data-dt-column="0" rowspan="1" colspan="1" class="dt-orderable-none" aria-label=""> <span class="dt-column-title"> <i data-bs-toggle="tooltip" data-bs-placement="right" class="fa fa-info-circle" tabindex="0" aria-label="Check the boxes in this column to select purchase suggestions for deletion" data-bs-original-title="Check the boxes in this column to select purchase suggestions for deletion"></i></span> <span class="dt-column-order"></span> </th> ... 3. After the patch: ... updated - aria-label text--> <th data-dt-column="0" rowspan="1" colspan="1" class="dt-orderable-none" aria-label="Select purchase suggestions for deletion"> <span class="dt-column-title"> added --> <span class="visually-hidden">Select purchase suggestions for deletion</span> <i data-bs-toggle="tooltip" data-bs-placement="right" class="fa fa-info-circle" tabindex="0" aria-label="Check the boxes in this column to select purchase suggestions for deletion" data-bs-original-title="Check the boxes in this column to select purchase suggestions for deletion"></i></span> <span class="dt-column-order"></span></th> ... 4. axe DevTools no longer has an issue for the first column header row (there is still one if you narrow the browser width and have the responsive controls shown - as the column header cell has no text). -- You are receiving this mail because: You are watching all bug changes.