Skip to content

Commit

Permalink
fix(searchfilters): set tabindex to negative
Browse files Browse the repository at this point in the history
Because non-interactive elements cannot have non-negative tabindex values
  • Loading branch information
jmiguelv committed Dec 10, 2024
1 parent 6e6db25 commit d64710e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/search/SearchFilters.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
{#if show}
<aside
class="filters"
tabindex="0"
tabindex="-1"
transition:slide={{ axis: 'x' }}
onintroend={handleIntroEnd}
onoutroend={handleOutroEnd}
Expand Down

0 comments on commit d64710e

Please sign in to comment.