Skip to content

Commit 6dad003

Browse files
Fix(accessibility): fix for data tables reading twice table headers (#5193)
* fix(accessibility): Removed `aria-label` from table header to prevent from reading twice headers. * removed comments --------- Co-authored-by: Manjunath Kalburgi <[email protected]>
1 parent f37e83e commit 6dad003

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ui/components/data-tables/RELEASENOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
<!-- ## [Unreleased] -->
66

7+
## 2.22.0
8+
9+
### Changed
10+
11+
- Removed `aria-label` from table header to prevent from reading twice headers.
712
## 2.17.0
813

914
### Added

ui/components/data-tables/index.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ export const ColumnTh = (props) => {
205205

206206
return (
207207
<th
208-
aria-label={props['aria-label']}
209208
aria-sort={getAriaSort()}
210209
className={computedClasses}
211210
scope="col"

0 commit comments

Comments
 (0)