+
+ Order ID
+ {selectedExecution.orderId}
+
+
+ Route
+ {selectedExecution.route}
+
+
+ Status
+
+
+ {statusLabel(selectedExecution.status)}
+
+
+
+ Duration
+ {formatDuration(selectedExecution.durationMs)}
+
+
+ Customer
+ {selectedExecution.customer}
+
+
+ Agent
+ {selectedExecution.agent}
+
+
+ Correlation ID
+ {selectedExecution.correlationId}
+
+
+ Timestamp
+ {selectedExecution.timestamp.toISOString()}
+
+ {selectedExecution.errorMessage && (
+
+
{selectedExecution.errorClass}
+
{selectedExecution.errorMessage}
+
+ )}
+
+ ),
+ },
+ {
+ label: 'Processors',
+ value: 'processors',
+ content: (
+
+ {selectedExecution.errorMessage ? (
+ <>
+
{selectedExecution.errorClass}
+
{selectedExecution.errorMessage}
+ >
+ ) : (
+
No error for this execution.
+ )}
+
+ ),
+ },
+ ]
+ : []
+
+ return (
+