https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42235 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes an accessibility release notes| |issue with the patron's | |OPAC messaging table (OPAC | |> [log in] > Your account > | |Messaging): "Table header | |text should not be empty". | | | |Previously when responsive | |table controls were shown | |for the table (a green "+" | |button is shown when the | |browser window is narrower | |and all the columns can't | |be displayed), there was no | |title for the column header | |with the controls. | | | |Now, the column header has | |the text "Expand" when the | |responsive controls are | |shown. CC| |david@davidnind.com --- Comment #3 from David Nind <david@davidnind.com> --- Testing notes (using KTD): 1. So that the responsive table control is shown (a green button with +), set SMSSendDriver to Email. The OPAC Messaging table now has an SMS column. When you narrow the browser screen width, the responsive table control is now visible. 2. Before the patch, inspecting the HTML source: ... <th class="dtr-control-col dtr-control dt-orderable-none" data-dt-column="5" rowspan="1" colspan="1" aria-label="" style=""> <span class="dt-column-title"></span> <span class="dt-column-order"></span> </th> ... 3. Before the patch, using axe DevTools, there are two issues for "Table header text should not be empty". (There are also oyther issues.) 4. After the patch, inspecting the HTML source: ... <th class="dtr-control-col dtr-control dt-orderable-none" data-dt-column="5" rowspan="1" colspan="1" aria-label="Expand" style=""> <span class="dt-column-title">Expand</span> <span class="dt-column-order"></span> </th> ... 5. Has "Expand" as the column title. 6. Before the Note: There are still other accessibility issues, including that the first column header for the messaging table is empty. -- You are receiving this mail because: You are watching all bug changes.