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 56f4c23 commit dfc5c59Copy full SHA for dfc5c59
apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.queues/route.tsx
@@ -380,11 +380,19 @@ export default function Page() {
380
</TableCell>
381
<TableCell
382
alignment="right"
383
- className={queue.paused ? "opacity-50" : undefined}
+ className={cn(
384
+ queue.paused ? "opacity-50" : undefined,
385
+ queue.running === queue.concurrencyLimit && "text-amber-500"
386
+ )}
387
>
388
{queue.running}/
389
{queue.concurrencyLimit ?? (
- <span className="text-text-dimmed">
390
+ <span
391
392
+ "text-text-dimmed",
393
394
395
+ >
396
{environment.concurrencyLimit} (Max)
397
</span>
398
)}
0 commit comments