Skip to content

Commit c9f2552

Browse files
committed
fix(webapp): display correct concurrency override base value
1 parent 8fdbbeb commit c9f2552

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -970,10 +970,10 @@ function QueueOverrideConcurrencyButton({
970970
{isOverridden ? (
971971
<Paragraph>
972972
This queue's concurrency limit is currently overridden to {currentLimit}.
973-
{queue.concurrencyLimit !== null &&
974-
` The original limit set in code was ${queue.concurrencyLimit}.`}{" "}
973+
{queue.concurrencyLimitBase !== null &&
974+
` The original limit set in code was ${queue.concurrencyLimitBase}.`}{" "}
975975
You can update the override or remove it to restore the{" "}
976-
{queue.concurrencyLimit !== null
976+
{queue.concurrencyLimitBase !== null
977977
? "limit set in code"
978978
: "environment concurrency limit"}
979979
.

0 commit comments

Comments
 (0)