File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/Shared/Components/CICDHistory Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -510,11 +510,11 @@ const TriggerDetails = memo(
510
510
511
511
< div className = "display-grid trigger-details__grid py-4" >
512
512
< WorkerStatus
513
- message = { executionInfo ?. workerDetails ? .message ?? message }
514
- podStatus = { executionInfo ?. workerDetails ? .status ?? podStatus }
513
+ message = { executionInfo ?. workerDetails . message ?? message }
514
+ podStatus = { executionInfo ?. workerDetails . status ?? podStatus }
515
515
stage = { stage }
516
- finishedOn = { executionInfo ?. workerDetails ? .endTime ?? finishedOn }
517
- clusterId = { executionInfo ?. workerDetails ? .clusterId || DEFAULT_CLUSTER_ID }
516
+ finishedOn = { executionInfo ?. workerDetails . endTime ?? finishedOn }
517
+ clusterId = { executionInfo ?. workerDetails . clusterId || DEFAULT_CLUSTER_ID }
518
518
workerPodName = { workerPodName }
519
519
namespace = { namespace }
520
520
/>
Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ import DeploymentDetailSteps from './DeploymentDetailSteps'
43
43
import { DeploymentHistoryConfigDiff } from './DeploymentHistoryConfigDiff'
44
44
import { GitChanges , Scroller } from './History.components'
45
45
import Artifacts from './Artifacts'
46
+ import TriggerDetails from './TriggerDetails'
46
47
import { EMPTY_STATE_STATUS } from '../../constants'
47
48
import './cicdHistory.scss'
48
- import TriggerDetails from './TriggerDetails'
49
49
50
50
const HistoryLogs : React . FC < HistoryLogsProps > = ( {
51
51
triggerDetails,
You can’t perform that action at this time.
0 commit comments