File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
frontend/public/src/containers/pages Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -295,6 +295,10 @@ export class CatalogPage extends React.Component<Props> {
295
295
*/
296
296
toggleMobileFilterWindowExpanded = ( expanded : boolean ) => {
297
297
this . setState ( { mobileFilterWindowExpanded : expanded } )
298
+ const inputs = [ ...document . getElementsByTagName ( "a" ) ]
299
+ inputs . forEach ( input =>
300
+ input . setAttribute ( "tabindex" , expanded ? "-1" : "0" )
301
+ )
298
302
}
299
303
300
304
/**
@@ -772,11 +776,7 @@ export class CatalogPage extends React.Component<Props> {
772
776
)
773
777
)
774
778
return (
775
- < nav
776
- className = "sticky-top"
777
- id = "department-sidebar"
778
- aria-label = "department filters"
779
- >
779
+ < nav id = "department-sidebar" aria-label = "department filters" >
780
780
< ul id = "department-sidebar-link-list" > { departmentSideBarListItems } </ ul >
781
781
</ nav >
782
782
)
You can’t perform that action at this time.
0 commit comments