diff --git a/web/src/components/executions/WorkflowExecutionTree.tsx b/web/src/components/executions/WorkflowExecutionTree.tsx
index 1922e4d..1adda5f 100644
--- a/web/src/components/executions/WorkflowExecutionTree.tsx
+++ b/web/src/components/executions/WorkflowExecutionTree.tsx
@@ -138,7 +138,7 @@ const ChildExecutionRow = memo(function ChildExecutionRow({
{/* Task name / expand toggle */}
- {isWorkflow && (
+ {isWorkflow ? (
+ ) : (
+
)}
{getStatusIcon(execution.status)}
@@ -321,7 +323,7 @@ const WorkflowExecutionRow = memo(function WorkflowExecutionRow({
>
- {isWorkflow && (
+ {isWorkflow ? (
+ ) : (
+
)}
| |