diff --git a/webview-ui/src/components/chat/ChatRow.tsx b/webview-ui/src/components/chat/ChatRow.tsx index ec5b877..b10210f 100644 --- a/webview-ui/src/components/chat/ChatRow.tsx +++ b/webview-ui/src/components/chat/ChatRow.tsx @@ -665,7 +665,12 @@ export const ChatRowContent = ({ }}> Response - + ) @@ -825,8 +830,11 @@ export const ChatRowContent = ({ }}> Arguments - )} diff --git a/webview-ui/src/components/mcp/McpResourceRow.tsx b/webview-ui/src/components/mcp/McpResourceRow.tsx index 8ecccdc..815b329 100644 --- a/webview-ui/src/components/mcp/McpResourceRow.tsx +++ b/webview-ui/src/components/mcp/McpResourceRow.tsx @@ -12,7 +12,7 @@ const McpResourceRow = ({ item }: McpResourceRowProps) => {
{
@@ -32,7 +31,7 @@ const McpToolRow = ({ tool }: McpToolRowProps) => { style={{ marginTop: "8px", fontSize: "12px", - background: CODE_BLOCK_BG_COLOR, + border: "1px solid color-mix(in srgb, var(--vscode-descriptionForeground) 30%, transparent)", borderRadius: "3px", padding: "8px", }}> diff --git a/webview-ui/src/components/mcp/McpView.tsx b/webview-ui/src/components/mcp/McpView.tsx index 391628d..8be4c5c 100644 --- a/webview-ui/src/components/mcp/McpView.tsx +++ b/webview-ui/src/components/mcp/McpView.tsx @@ -217,7 +217,7 @@ const ServerRow = ({ server }: { server: McpServer }) => { {server.tools && server.tools.length > 0 ? (
+ style={{ display: "flex", flexDirection: "column", gap: "6px", width: "100%" }}> {server.tools.map((tool) => ( ))}