We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 107de44 commit da83a78Copy full SHA for da83a78
src/webview/SearchSidebar/SearchResultList/MatchList.tsx
@@ -32,6 +32,7 @@ function OneMatch({ match }: { match: DisplayResult }) {
32
const styleProps = stylex.props(styles.codeItem, active && styles.active)
33
const [hoverable] = useHover(hovered => {
34
return (
35
+ // biome-ignore lint/a11y/noNoninteractiveTabindex: need it for styling
36
<li {...styleProps} onClick={setActive} tabIndex={0}>
37
<CodeBlock match={match} />
38
{(hovered || active) && <MatchActions match={match} />}
0 commit comments