Skip to content

Commit

Permalink
fix: search hits scrollbars (#1133)
Browse files Browse the repository at this point in the history
  • Loading branch information
abvthecity authored Jul 11, 2024
1 parent b9fe363 commit 5593089
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/ui/app/src/search/SearchHits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,11 @@ export const SearchHits: React.FC = () => {
}

return (
<FernScrollArea rootClassName="border-default min-h-0 flex-1 shrink border-t" className="p-2">
<FernScrollArea
rootClassName="border-default min-h-0 flex-1 shrink border-t"
className="p-2"
scrollbars="vertical"
>
{hits.map((hit) => (
<SearchHit
setRef={(elem) => {
Expand Down

0 comments on commit 5593089

Please sign in to comment.