diff --git a/canvas/src/components/ConversationTraceModal.tsx b/canvas/src/components/ConversationTraceModal.tsx index 90fcaed6..61a834c0 100644 --- a/canvas/src/components/ConversationTraceModal.tsx +++ b/canvas/src/components/ConversationTraceModal.tsx @@ -251,7 +251,7 @@ export function ConversationTraceModal({ open, workspaceId: _workspaceId, onClos {/* Error */} {isError && entry.error_detail && ( -
+
{entry.error_detail.slice(0, 200)}
)} @@ -272,7 +272,7 @@ export function ConversationTraceModal({ open, workspaceId: _workspaceId, onClos )} {responseText && (
-
Response
+
Response
{responseText.slice(0, 2000)} {responseText.length > 2000 && ( diff --git a/canvas/src/components/tabs/ActivityTab.tsx b/canvas/src/components/tabs/ActivityTab.tsx index 18e605a0..092a58bc 100644 --- a/canvas/src/components/tabs/ActivityTab.tsx +++ b/canvas/src/components/tabs/ActivityTab.tsx @@ -307,7 +307,7 @@ function ActivityRow({ {/* Error detail */} {isError && entry.error_detail && ( -
+
{entry.error_detail}
)} @@ -358,10 +358,10 @@ function A2AErrorPreview({ label, raw }: { label: string; raw: string }) { const hint = inferA2AErrorHint(detail); return (
-
{label} — delivery failed
+
{label} — delivery failed
{detail}
-
{hint}
+
{hint}
); diff --git a/canvas/src/components/tabs/ScheduleTab.tsx b/canvas/src/components/tabs/ScheduleTab.tsx index f3a2388c..ae7ac5aa 100644 --- a/canvas/src/components/tabs/ScheduleTab.tsx +++ b/canvas/src/components/tabs/ScheduleTab.tsx @@ -367,7 +367,7 @@ export function ScheduleTab({ workspaceId }: Props) { Runs: {sched.run_count}
{sched.last_error && ( -
+
Error: {sched.last_error}
)} diff --git a/canvas/src/components/tabs/SkillsTab.tsx b/canvas/src/components/tabs/SkillsTab.tsx index 60097625..74278a23 100644 --- a/canvas/src/components/tabs/SkillsTab.tsx +++ b/canvas/src/components/tabs/SkillsTab.tsx @@ -492,7 +492,7 @@ export function SkillsTab({ workspaceId, data }: Props) {
Couldn't load the plugin registry
-
{registryError}
+
{registryError}
Check the platform server is reachable at /plugins. The Retry button is in the header above.