We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b51b044 commit 6d40333Copy full SHA for 6d40333
apps/webapp/app/components/runs/v3/TaskRunsTable.tsx
@@ -370,7 +370,9 @@ export function TaskRunsTable({
370
</TableCell>
371
{showCompute && (
372
<TableCell to={path} className="tabular-nums">
373
- {run.costInCents > 0 ? formatCurrencyAccurate(run.costInCents / 100) : "–"}
+ {run.costInCents > 0
374
+ ? formatCurrencyAccurate((run.costInCents + run.baseCostInCents) / 100)
375
+ : "–"}
376
377
)}
378
<TableCell to={path}>
0 commit comments