Skip to content

Commit 3299574

Browse files
ivicacclaude
andcommitted
2896 client - Style empty input/output messages in execution tabs panel
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 13866a6 commit 3299574

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

client/src/shared/components/workflow-executions/WorkflowExecutionsTabsPanel.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,9 @@ const WorkflowExecutionsTabsPanel = ({
184184
{selectedItem?.input ? (
185185
<WorkflowExecutionContent input={selectedItem?.input} />
186186
) : (
187-
<span className="p-1 text-sm">No input data.</span>
187+
<div className="flex items-center justify-center p-4">
188+
<span className="text-sm text-muted-foreground">No input data</span>
189+
</div>
188190
)}
189191
</TabsContent>
190192

@@ -198,7 +200,9 @@ const WorkflowExecutionsTabsPanel = ({
198200
}
199201
/>
200202
) : (
201-
<span className="p-1 text-sm">No output data.</span>
203+
<div className="flex items-center justify-center p-4">
204+
<span className="text-sm text-muted-foreground">No output data</span>
205+
</div>
202206
)}
203207
</TabsContent>
204208

0 commit comments

Comments
 (0)