Skip to content

Commit

Permalink
fix(table): hide sort button in screen reader form mode (#1087)
Browse files Browse the repository at this point in the history
Co-authored-by: malin-klingsell <[email protected]>
  • Loading branch information
2 people authored and GitHub Enterprise committed Dec 4, 2023
1 parent 051b9eb commit 0b0bad1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div #focusContainer class="nx-sort-header__focus-container" role="button" tabindex="0" [title]="_getTitle()" aria-live="polite">
<div #focusContainer class="nx-sort-header__focus-container" role="button" tabindex="0" [title]="_getTitle()" aria-live="polite" aria-hidden="true">
<div class="nx-sort-header__icons-container" [attr.aria-label]="_getAriaLabel()">
<nx-icon name="chevron-up-small" class="nx-sort-header__icon-up" [class.nx-sort-header__hidden-icon]="_isSortedDescending()"> </nx-icon>
<nx-icon name="chevron-down-small" class="nx-sort-header__icon-down" [class.nx-sort-header__hidden-icon]="_isSortedAscending()"> </nx-icon>
Expand Down

0 comments on commit 0b0bad1

Please sign in to comment.