Skip to content

Commit

Permalink
EPMRPP-98519 || Duration is not shown for Nested Step on Log Level (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
BlazarQSO authored and AmsterGet committed Jan 16, 2025
1 parent c188571 commit e9953b6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ export class NestedStepHeader extends Component {
status={data.status}
itemNumber={data.number}
timing={{
start: data.startTime,
end: data.endTime,
start: new Date(data.startTime).getTime(),
end: new Date(data.endTime).getTime(),
approxTime: data.approximateDuration,
}}
/>
Expand Down

0 comments on commit e9953b6

Please sign in to comment.