Skip to content

Commit cfcbfbd

Browse files
authored
Fix missing duration (#624)
1 parent 8d09a84 commit cfcbfbd

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/main/frontend/pipeline-console-view/pipeline-console/main/ConsoleLogCard.tsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -229,10 +229,7 @@ export class ConsoleLogCard extends React.Component<
229229
component="div"
230230
key={`step-duration-text-${this.props.step.id}`}
231231
>
232-
{this.props.step.totalDurationMillis.substring(
233-
this.props.step.totalDurationMillis.indexOf(" ") + 1,
234-
this.props.step.totalDurationMillis.length,
235-
)}
232+
{this.props.step.totalDurationMillis}
236233
</Typography>
237234
</Grid>
238235

0 commit comments

Comments
 (0)