Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/services/mcp/McpHub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,6 @@ export class McpHub {

// Validate the config using McpSettingsSchema
const result = McpSettingsSchema.safeParse(config)
console.log("IM HERE 10101", result)
if (result.success) {
await this.updateServerConnections(result.data.mcpServers || {})
} else {
Expand Down
30 changes: 16 additions & 14 deletions webview-ui/src/components/chat/TaskHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,22 +251,18 @@ const TaskHeader: React.FC<TaskHeaderProps> = ({
display: "flex",
alignItems: "center",
}}>
<div
style={{
width: 30,
height: "1.2em",
background:
"linear-gradient(to right, transparent, var(--vscode-badge-background))",
}}
/>
<div
style={{
cursor: "pointer",
color: "var(--vscode-badge-foreground)",
color: "var(--vscode-foreground)",
fontSize: "11px",
paddingRight: 8,
paddingLeft: 4,
padding: "2px 8px",
backgroundColor: "var(--vscode-badge-background)",
borderRadius: "3px",
border: "1px solid var(--vscode-button-secondaryBackground)",
display: "flex",
alignItems: "center",
height: "18px",
}}
onClick={() => setIsTextExpanded(!isTextExpanded)}>
{t("chat:task.seeMore")}
Expand All @@ -278,11 +274,17 @@ const TaskHeader: React.FC<TaskHeaderProps> = ({
<div
style={{
cursor: "pointer",
color: "var(--vscode-badge-foreground)",
color: "var(--vscode-foreground)",
fontSize: "11px",
marginLeft: "auto",
textAlign: "right",
paddingRight: 8,
padding: "2px 8px",
backgroundColor: "var(--vscode-badge-background)",
borderRadius: "3px",
border: "1px solid var(--vscode-button-secondaryBackground)",
display: "inline-flex",
alignItems: "center",
height: "18px",
width: "fit-content",
}}
onClick={() => setIsTextExpanded(!isTextExpanded)}>
{t("chat:task.seeLess")}
Expand Down
Loading