Skip to content

Commit

Permalink
Merge pull request #41 from musashi-garami/main
Browse files Browse the repository at this point in the history
Fix to prevent dialogue overflowing from large reply
  • Loading branch information
gregnr committed Jul 31, 2023
2 parents 7a7df7e + f1b4d7e commit d83f02e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/SearchDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function SearchDialog() {
</kbd>{' '}
</button>
<Dialog open={open}>
<DialogContent className="sm:max-w-[850px] text-black">
<DialogContent className="sm:max-w-[850px] max-h-[80vh] overflow-y-auto text-black">
<DialogHeader>
<DialogTitle>OpenAI powered doc search</DialogTitle>
<DialogDescription>
Expand Down

0 comments on commit d83f02e

Please sign in to comment.