Path: {props.session.metadata?.path ?? '(unknown)'}
Host: {props.session.metadata?.host ?? '(unknown)'}
Status: {props.session.active ? 'Active' : 'Inactive'}
diff --git a/web/src/components/ToolCard/ToolCard.tsx b/web/src/components/ToolCard/ToolCard.tsx
index 83f88300..4fb0bb58 100644
--- a/web/src/components/ToolCard/ToolCard.tsx
+++ b/web/src/components/ToolCard/ToolCard.tsx
@@ -361,32 +361,35 @@ export function ToolCard(props: {
const stateColor = statusColorClass(props.block.tool.state)
const header = (
-
-
-
- {presentation.icon}
+
+
+
+
+ {presentation.icon}
+
+
+ {toolTitle}
+
-
-
{toolTitle}
- {subtitle ? (
-
- {truncate(subtitle, 160)}
-
+
+
+
+
+
+
+ {showDialog ? (
+
+
+
) : null}
-
-
-
-
-
- {showDialog ? (
-
-
-
- ) : null}
-
+ {subtitle ? (
+
+ {truncate(subtitle, 160)}
+
+ ) : null}
)
diff --git a/web/src/components/ui/card.tsx b/web/src/components/ui/card.tsx
index fae05897..e0c81e06 100644
--- a/web/src/components/ui/card.tsx
+++ b/web/src/components/ui/card.tsx
@@ -5,7 +5,7 @@ export const Card = React.forwardRef
(
)
@@ -43,4 +43,3 @@ export const CardContent = React.forwardRef