-
Notifications
You must be signed in to change notification settings - Fork 0
Sou #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sou #4
Changes from all commits
fa02486
21903c1
98e9b7d
68d594d
2f82760
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -308,14 +308,14 @@ export function ChatSidebar({ chats, currentUser }: ChatSidebarProps) { | |
| </ScrollArea> | ||
| </SidebarContent> | ||
|
|
||
| <SidebarFooter className="border-t border-sidebar-border p-4"> | ||
| <SidebarFooter className="border-t border-sidebar-border px-4 py-2"> | ||
| <SidebarMenu> | ||
| <SidebarMenuItem> | ||
| <DropdownMenu> | ||
| <DropdownMenuTrigger asChild> | ||
| <SidebarMenuButton | ||
| size="lg" | ||
| className="data-[state=open]:bg-sidebar-accent data-[state=open]:text-sidebar-accent-foreground" | ||
| size="default" | ||
| className="data-[state=open]:bg-sidebar-accent data-[state=open]:text-sidebar-accent-foreground h-auto py-1" | ||
| > | ||
| <Avatar className="rounded-sm" size="default"> | ||
| <AvatarImage src={userImage} alt={userName} /> | ||
|
|
@@ -349,6 +349,8 @@ export function ChatSidebar({ chats, currentUser }: ChatSidebarProps) { | |
| </DropdownMenu> | ||
| </SidebarMenuItem> | ||
| </SidebarMenu> | ||
| {/* Spacer matching the height of the right-side disclaimer text */} | ||
| <div className="h-5" /> | ||
|
Comment on lines
+352
to
+353
|
||
| </SidebarFooter> | ||
| </Sidebar> | ||
| ); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: PointerRAG/Project
Length of output: 7194
Change fixed
h-[36px]tomin-h-[36px]to preserve textarea multiline growth.The fixed height constraint caps the textarea at 36px and prevents it from expanding for multiline input. Use
min-h-[36px]instead to maintain minimum height while allowing content-driven growth, which aligns with the component'sh-fitdesign.Suggested tweak
🤖 Prompt for AI Agents