Fix: Display missing prices and runtime

Show "Break-even price" and "target-price" if available. Do not render runtime if it is 0.
This commit is contained in:
gpt-engineer-app[bot]
2025-07-09 23:30:31 +00:00
committed by PhatPhuckDave
parent b2c5684577
commit 7353c7e243

View File

@@ -189,7 +189,7 @@ const JobCardDetails: React.FC<JobCardDetailsProps> = ({ job }) => {
icon={<Calendar className="w-4 h-4" />}
/>
{job.status === 'Running' && job.runtime && (
{job.status === 'Running' && job.runtime && job.runtime > 0 && (
<>
<div className="flex items-center gap-2 text-sm text-gray-400">
<Clock className="w-4 h-4" />