From 7353c7e24347e3402235dca6673b86c287803a14 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Wed, 9 Jul 2025 23:30:31 +0000 Subject: [PATCH] Fix: Display missing prices and runtime Show "Break-even price" and "target-price" if available. Do not render runtime if it is 0. --- 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 4420f46..1a935a4 100644 --- a/src/components/JobCardDetails.tsx +++ b/src/components/JobCardDetails.tsx @@ -189,7 +189,7 @@ const JobCardDetails: React.FC = ({ job }) => { icon={} /> - {job.status === 'Running' && job.runtime && ( + {job.status === 'Running' && job.runtime && job.runtime > 0 && ( <>