Skip to content

Commit

Permalink
fix(ui5-table): correct announced row count (#9442)
Browse files Browse the repository at this point in the history
Table row added for loading more functionality was read out by the screen readers. With this PR, the row is excluded from the accessibility tree.

Fixes: #9243
  • Loading branch information
nnaydenow authored Jul 10, 2024
1 parent 60c5b98 commit 011815b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/compat/src/Table.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
{{/inline}}

{{#*inline "tableEndRow"}}
<tr tabindex="-1" class="ui5-table-end-row">
<tr tabindex="-1" aria-hidden="true" class="ui5-table-end-row">
<td tabindex="-1">
<span tabindex="-1" aria-hidden="true" class="ui5-table-end-marker"></span>
</td>
Expand Down

0 comments on commit 011815b

Please sign in to comment.