diff --git a/src/ScadaLink.CentralUI/Components/Audit/AuditDrilldownDrawer.razor b/src/ScadaLink.CentralUI/Components/Audit/AuditDrilldownDrawer.razor index f580fb8..ff31789 100644 --- a/src/ScadaLink.CentralUI/Components/Audit/AuditDrilldownDrawer.razor +++ b/src/ScadaLink.CentralUI/Components/Audit/AuditDrilldownDrawer.razor @@ -55,6 +55,9 @@
CorrelationId
@(Event.CorrelationId?.ToString() ?? "—")
+
ExecutionId
+
@(Event.ExecutionId?.ToString() ?? "—")
+
OccurredAtUtc
@FormatTimestamp(Event.OccurredAtUtc)
@@ -151,6 +154,14 @@ Show all events for this operation } + @if (Event.ExecutionId is not null) + { + + }