diff --git a/web/src/app/home/workflows/components/workflow-editor/WorkflowEditorComponent.tsx b/web/src/app/home/workflows/components/workflow-editor/WorkflowEditorComponent.tsx index ca5f3e4d..e2214afb 100644 --- a/web/src/app/home/workflows/components/workflow-editor/WorkflowEditorComponent.tsx +++ b/web/src/app/home/workflows/components/workflow-editor/WorkflowEditorComponent.tsx @@ -670,7 +670,7 @@ function WorkflowEditorInner() { {/* Right: Property Panel (conditionally rendered) */} {showPropertyPanel && ( -
+
-
- - {nodeExec.node_id} - - +
+
+
+ + {nodeExec.node_id} + + {typeof nodeExec.retry_count === 'number' && nodeExec.retry_count > 0 && ( + + retry {nodeExec.retry_count} + + )} +
+
+ {nodeExec.node_type} +
+
+ {nodeExec.status}
-
- {nodeExec.node_type} -
{nodeExec.inputs && Object.keys(nodeExec.inputs).length > 0 && (
{t('workflows.inputs')}:
-
+                                
                                   {JSON.stringify(nodeExec.inputs, null, 2)}
                                 
@@ -656,14 +665,19 @@ export default function WorkflowExecutionsTab({ {nodeExec.outputs && Object.keys(nodeExec.outputs).length > 0 && (
{t('workflows.outputs')}:
-
+                                
                                   {JSON.stringify(nodeExec.outputs, null, 2)}
                                 
)} {nodeExec.error && ( -
- {nodeExec.error} +
+
+ {t('workflows.error')} +
+
+ {nodeExec.error} +
)}