mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 01:40:15 +01:00
🔧 fix: Streamline Builder Links and Enhance UI Consistency (#5229)
* fix: Include iconURL in Bedrock client initialization * fix: unnecessary filtering for agent file_search files * chore: use theme bg colors * refactor: rely on endpoint config for enabling builder links in side navigation instead of parameters * fix: remove unnecessary keyProvided check for agent builder link
This commit is contained in:
parent
dd927583a7
commit
687ab32bd3
4 changed files with 15 additions and 21 deletions
|
|
@ -183,7 +183,7 @@ const SidePanel = ({
|
|||
<ResizablePanelGroup
|
||||
direction="horizontal"
|
||||
onLayout={(sizes) => throttledSaveLayout(sizes)}
|
||||
className="transition-width relative h-full w-full flex-1 overflow-auto bg-white dark:bg-gray-800"
|
||||
className="transition-width relative h-full w-full flex-1 overflow-auto bg-presentation"
|
||||
>
|
||||
<ResizablePanel
|
||||
defaultSize={currentLayout[0]}
|
||||
|
|
@ -195,7 +195,7 @@ const SidePanel = ({
|
|||
</ResizablePanel>
|
||||
{artifacts != null && (
|
||||
<>
|
||||
<ResizableHandleAlt withHandle className="ml-3 bg-border-medium dark:text-white" />
|
||||
<ResizableHandleAlt withHandle className="ml-3 bg-border-medium text-text-primary" />
|
||||
<ResizablePanel
|
||||
defaultSize={currentLayout[1]}
|
||||
minSize={minSizeMain}
|
||||
|
|
@ -227,7 +227,7 @@ const SidePanel = ({
|
|||
/>
|
||||
</div>
|
||||
{(!isCollapsed || minSize > 0) && !isSmallScreen && !fullCollapse && (
|
||||
<ResizableHandleAlt withHandle className="bg-transparent dark:text-white" />
|
||||
<ResizableHandleAlt withHandle className="bg-transparent text-text-primary" />
|
||||
)}
|
||||
<ResizablePanel
|
||||
tagName="nav"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue