Skip to content

Commit 5631938

Browse files
committed
Live updates total env concurrency
1 parent 4ae0e54 commit 5631938

File tree

1 file changed

+3
-1
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.concurrency

1 file changed

+3
-1
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.concurrency/route.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,9 @@ function Upgradable({
461461
)}
462462
</div>
463463
</TableCell>
464-
<TableCell alignment="right">{environment.maximumConcurrencyLimit}</TableCell>
464+
<TableCell alignment="right">
465+
{environment.planConcurrencyLimit + (allocation.get(environment.id) ?? 0)}
466+
</TableCell>
465467
</TableRow>
466468
))}
467469
</TableBody>

0 commit comments

Comments
 (0)