Skip to content

Commit

Permalink
fix: missing metadata info from text-ouput events (#142392) (#142527)
Browse files Browse the repository at this point in the history
(cherry picked from commit 392f490)

Co-authored-by: Lola <[email protected]>
  • Loading branch information
kibanamachine and Omolola-Akinleye authored Oct 3, 2022
1 parent c41d09d commit 1780316
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ export const SessionViewDetailPanel = ({
}),
content: (
<DetailPanelMetadataTab
processHost={selectedProcess?.events[0]?.host}
processContainer={selectedProcess?.events[0]?.container}
processOrchestrator={selectedProcess?.events[0]?.orchestrator}
processCloud={selectedProcess?.events[0]?.cloud}
processHost={selectedProcess?.getDetails()?.host}
processContainer={selectedProcess?.getDetails()?.container}
processOrchestrator={selectedProcess?.getDetails()?.orchestrator}
processCloud={selectedProcess?.getDetails()?.cloud}
/>
),
},
Expand Down

0 comments on commit 1780316

Please sign in to comment.