Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion www/src/components/searchbar-body.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,8 @@ class Search extends Component {

// the result component is fed into the InfiniteHits component
const Result = ({ hit, pathname, search }) => {
const selected = pathname.slice(10) === hit.name
// Example: pathname = `/plugins/gatsby-link/`, hit.name = `gatsby-link`
const selected = pathname.split(`/`)[2] === hit.name
return (
<Link
to={{
Expand Down