Skip to content

Commit d0ece17

Browse files
authored
Merge pull request #7607 from janhq/fix/scrollable-dropdown-assistant
fix: scrollable dropdown assistant
2 parents cdf55b5 + e2442a0 commit d0ece17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-app/src/containers/ChatInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1551,7 +1551,7 @@ const ChatInput = memo(function ChatInput({
15511551
<IconUser size={18} className="text-muted-foreground" />
15521552
<span>Use Assistant</span>
15531553
</DropdownMenuSubTrigger>
1554-
<DropdownMenuSubContent>
1554+
<DropdownMenuSubContent className="max-h-64 overflow-y-auto">
15551555
<DropdownMenuItem
15561556
className={!selectedAssistant && !currentThread?.assistants?.length ? 'bg-accent' : ''}
15571557
onClick={() => {

0 commit comments

Comments
 (0)