mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix overflowing mcp server name
This commit is contained in:
parent
e587115d62
commit
95acb1e95c
1 changed files with 1 additions and 1 deletions
|
|
@ -280,7 +280,7 @@ const ServerRow = ({ server }: { server: McpServer }) => {
|
|||
{!server.error && (
|
||||
<span className={`codicon codicon-chevron-${isExpanded ? "down" : "right"}`} style={{ marginRight: "8px" }} />
|
||||
)}
|
||||
<span style={{ flex: 1 }}>{server.name}</span>
|
||||
<span style={{ flex: 1, overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap" }}>{server.name}</span>
|
||||
<div style={{ display: "flex", alignItems: "center", marginRight: "8px" }} onClick={(e) => e.stopPropagation()}>
|
||||
<div
|
||||
role="switch"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue