Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chaoscenter/web/src/api/entities/workflowRun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface ChaosData {
engineContext: string;
engineUID: string;
faultName: string;
faultPod: string;
experimentPod: string;
faultStatus: string;
faultVerdict: string;
failStep: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function CustomStepLogController({
podName: podName,
podNamespace: namespace ?? '',
podType: nodeType ?? '',
expPod: chaosData?.faultPod,
expPod: chaosData?.experimentPod,
runnerPod: chaosData?.runnerPod,
chaosNamespace: chaosData?.namespace
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const DetailsTabs = ({
title: getString('logs'),
panel: (
<LogsTabController
key={node.chaosData?.faultPod ?? podID}
key={node.chaosData?.experimentPod ?? podID}
chaosData={node.chaosData}
nodeType={node.type}
namespace={namespace}
Expand Down