mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-04-07 00:15:23 +02:00
Merge f7f6655454 into 8ed0bcf5ca
This commit is contained in:
commit
85389d113f
2 changed files with 8 additions and 2 deletions
|
|
@ -84,7 +84,9 @@ export default function MCPServerMenuItem({
|
|||
<span className="truncate text-sm font-medium text-text-primary">{displayName}</span>
|
||||
</div>
|
||||
{server.config?.description && (
|
||||
<p className="truncate text-xs text-text-secondary">{server.config.description}</p>
|
||||
<p className="truncate text-xs text-text-secondary" title={server.config.description}>
|
||||
{server.config.description}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -124,7 +124,11 @@ export default function MCPServerCard({
|
|||
{/* Server Info */}
|
||||
<div className="min-w-0 flex-1">
|
||||
<span className="truncate text-sm font-medium text-text-primary">{displayName}</span>
|
||||
{description && <p className="truncate text-xs text-text-secondary">{description}</p>}
|
||||
{description && (
|
||||
<p className="truncate text-xs text-text-secondary" title={description}>
|
||||
{description}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* Actions */}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue