From e024439cb00acecab702c69351fe80ee1c60b071 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 12 Jul 2025 10:56:22 +0000 Subject: [PATCH] Adjust runtime calculation for parallel jobs Update runtime calculation to reflect the impact of parallel job execution, dividing the total runtime by the number of parallel runs. --- src/components/JobCardDetails.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/JobCardDetails.tsx b/src/components/JobCardDetails.tsx index 51c9710..280641f 100644 --- a/src/components/JobCardDetails.tsx +++ b/src/components/JobCardDetails.tsx @@ -203,7 +203,7 @@ const JobCardDetails: React.FC = ({ job }) => { Runtime:
- {formatDuration(job.runtime)} + {formatDuration(job.runtime / (job.parallel || 1))} ( {editingField === 'parallel' ? (