Skip to content

Commit

Permalink
Fixed duration printing in extraction log.
Browse files Browse the repository at this point in the history
  • Loading branch information
lmarini committed Oct 11, 2024
1 parent 84ca3cf commit 81b138f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/src/components/listeners/ExtractionJobs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,7 @@ export const ExtractionJobs = (props) => {
<TableCell align="left">{job.listener_id}</TableCell>
<TableCell align="left">{parseDate(job.created)}</TableCell>
<TableCell align="left">{job.creator.email}</TableCell>
<TableCell align="left">
{job.duration ? `${job.duration}seconds` : "waiting..."}
</TableCell>
<TableCell align="left">{job.duration} seconds</TableCell>
<TableCell align="left">
{job.resource_ref.collection}
</TableCell>
Expand Down

0 comments on commit 81b138f

Please sign in to comment.