Skip to content

Commit 063fff1

Browse files
committed
More tweaks
1 parent a00d5fa commit 063fff1

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

webview-ui/src/components/mcp/McpErrorRow.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ export const McpErrorRow = ({ error }: McpErrorRowProps) => {
2020
}, [error.level])
2121

2222
return (
23-
<div
24-
className="p-2 rounded bg-vscode-textCodeBlock-background text-sm"
25-
style={{ borderLeft: `3px solid ${color}` }}>
23+
<div className="text-sm bg-vscode-textCodeBlock-background border-l-2 p-2" style={{ borderColor: color }}>
2624
<div className="mb-1" style={{ color }}>
2725
{error.message}
2826
</div>

webview-ui/src/i18n/locales/en/mcp.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"emptyState": {
2626
"noTools": "No tools found",
2727
"noResources": "No resources found",
28-
"noLogs": "No logs found"
28+
"noLogs": "No logs found",
29+
"noErrors": "No errors found"
2930
},
3031
"networkTimeout": {
3132
"label": "Network Timeout",

0 commit comments

Comments
 (0)