We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c9b11 commit e282371Copy full SHA for e282371
src/components/app/details/cicdHistory/TriggerDetails.tsx
@@ -133,7 +133,7 @@ const WorkerStatus = React.memo(
133
// check if finishedOn time is timed out or not
134
const isTimedOut = moment(finishedOn).isBefore(moment().subtract(TIMEOUT_VALUE, 'hours'))
135
// finishedOn is 0001-01-01T00:00:00Z when the worker is still running
136
- const showLink = true || finishedOn === ZERO_TIME_STRING || !isTimedOut
+ const showLink = finishedOn === ZERO_TIME_STRING || !isTimedOut
137
138
return (
139
<>
0 commit comments