FIX: removes aria-hidden on category-status (#29800)
Descendants can gain focus (category badge) and that makes aria-hidden incorrect as a result.
This commit is contained in:
parent
9dab8ed29b
commit
388b9dd38d
|
@ -289,7 +289,7 @@ export default class CategoryRow extends Component {
|
||||||
>
|
>
|
||||||
|
|
||||||
{{#if this.category}}
|
{{#if this.category}}
|
||||||
<div class="category-status" aria-hidden="true">
|
<div class="category-status">
|
||||||
{{#if this.hasParentCategory}}
|
{{#if this.hasParentCategory}}
|
||||||
{{#unless this.hideParentCategory}}
|
{{#unless this.hideParentCategory}}
|
||||||
{{this.badgeForParentCategory}}
|
{{this.badgeForParentCategory}}
|
||||||
|
|
Loading…
Reference in New Issue