Skip to content

Commit

Permalink
fix(ui): use podname for EventPanel name param (#10051) (#10052)
Browse files Browse the repository at this point in the history
Signed-off-by: fsiegmund <siegmund@slb.com>
  • Loading branch information
fsiegmund committed Nov 18, 2022
1 parent 885a80c commit 74766d5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -475,7 +475,7 @@ export const WorkflowDetails = ({history, location, match}: RouteComponentProps<
{parsedSidePanel.type === 'logs' && (
<WorkflowLogsViewer workflow={workflow} initialPodName={podName} nodeId={parsedSidePanel.nodeId} container={parsedSidePanel.container} archived={false} />
)}
{parsedSidePanel.type === 'events' && <EventsPanel namespace={namespace} kind='Pod' name={parsedSidePanel.nodeId} />}
{parsedSidePanel.type === 'events' && <EventsPanel namespace={namespace} kind='Pod' name={podName} />}
{parsedSidePanel.type === 'share' && <WidgetGallery namespace={namespace} name={name} />}
{parsedSidePanel.type === 'yaml' && <WorkflowYamlViewer workflow={workflow} selectedNode={selectedNode} />}
{!parsedSidePanel}
Expand Down

0 comments on commit 74766d5

Please sign in to comment.