Skip to content

Commit 6d40333

Browse files
committed
The compute column should be invocation + compute cost
1 parent b51b044 commit 6d40333

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/webapp/app/components/runs/v3/TaskRunsTable.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,9 @@ export function TaskRunsTable({
370370
</TableCell>
371371
{showCompute && (
372372
<TableCell to={path} className="tabular-nums">
373-
{run.costInCents > 0 ? formatCurrencyAccurate(run.costInCents / 100) : "–"}
373+
{run.costInCents > 0
374+
? formatCurrencyAccurate((run.costInCents + run.baseCostInCents) / 100)
375+
: "–"}
374376
</TableCell>
375377
)}
376378
<TableCell to={path}>

0 commit comments

Comments
 (0)