Skip to content

Commit

Permalink
fix: Fix chevron for open/closed search results (#6978)
Browse files Browse the repository at this point in the history
Closes
https://linear.app/sourcegraph/issue/SRCH-1583/result-accordions-are-backwards

## Test plan

Trivial change, locally tested.
  • Loading branch information
fkling authored Feb 6, 2025
1 parent 0e816a5 commit a7f12f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const RepoFileLink: React.FunctionComponent<React.PropsWithChildren<Props
}
}, [pathMatchRanges, fileName])

const Chevron = collapsed ? ChevronDown : ChevronRight
const Chevron = collapsed ? ChevronRight : ChevronDown
const {
clientCapabilities: { agentIDE },
} = useConfig()
Expand Down

0 comments on commit a7f12f7

Please sign in to comment.