From 71819586431e7e38e0001424131dfbdfacca173e Mon Sep 17 00:00:00 2001 From: Dustin Healy <54083382+dustinhealy@users.noreply.github.com> Date: Tue, 26 May 2026 15:36:29 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=82=EF=B8=8F=20fix:=20Truncate=20Long=20M?= =?UTF-8?q?CP=20Server=20Titles=20In=20Builder=20Panel=20(#13321)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In SidePanel/MCPBuilder/MCPServerCard the server title was rendered in a span carrying the Tailwind truncate utility. overflow: hidden does not apply to inline boxes, so long server names overflowed their slot and ran underneath the Edit, Reconnect, and Revoke icons. The title now renders in a div so truncate actually clips with an ellipsis. No other styling changes. --- client/src/components/SidePanel/MCPBuilder/MCPServerCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/SidePanel/MCPBuilder/MCPServerCard.tsx b/client/src/components/SidePanel/MCPBuilder/MCPServerCard.tsx index 1e538724fb..5967088f56 100644 --- a/client/src/components/SidePanel/MCPBuilder/MCPServerCard.tsx +++ b/client/src/components/SidePanel/MCPBuilder/MCPServerCard.tsx @@ -123,7 +123,7 @@ export default function MCPServerCard({ {/* Server Info */}
{description}
}