@@ -661,15 +661,9 @@ function QueuesWithMetricsView() {
661661 < TableHeader >
662662 < TableRow >
663663 < TableHeaderCell > Name</ TableHeaderCell >
664- < TableHeaderCell alignment = "right" >
665- Queued
666- </ TableHeaderCell >
667- < TableHeaderCell alignment = "right" >
668- Running
669- </ TableHeaderCell >
670- < TableHeaderCell alignment = "right" >
671- Limit
672- </ TableHeaderCell >
664+ < TableHeaderCell alignment = "right" > Queued</ TableHeaderCell >
665+ < TableHeaderCell alignment = "right" > Running</ TableHeaderCell >
666+ < TableHeaderCell alignment = "right" > Limit</ TableHeaderCell >
673667 < TableHeaderCell
674668 alignment = "right"
675669 tooltipContentClassName = "max-w-max"
@@ -685,17 +679,15 @@ function QueuesWithMetricsView() {
685679 code.
686680 </ p >
687681 < p >
688- < span className = "text-text-bright" > Override</ span > : a limit you set here or
689- via the API.
682+ < span className = "text-text-bright" > Override</ span > : a limit you set here
683+ or via the API.
690684 </ p >
691685 </ div >
692686 }
693687 >
694688 Limited by
695689 </ TableHeaderCell >
696- < TableHeaderCell alignment = "right" >
697- Health
698- </ TableHeaderCell >
690+ < TableHeaderCell alignment = "right" > Health</ TableHeaderCell >
699691 < TableHeaderCell
700692 alignment = "right"
701693 disableTooltipHoverableContent
@@ -844,10 +836,7 @@ function QueuesWithMetricsView() {
844836 to = { queueDetailPath }
845837 alignment = "right"
846838 actionClassName = "pl-16"
847- className = { cn (
848- "w-[1%]" ,
849- queue . paused ? "opacity-50" : undefined
850- ) }
839+ className = { cn ( "w-[1%]" , queue . paused ? "opacity-50" : undefined ) }
851840 // Keep the whole row navigable: the override explainer is a tooltip
852841 // button, so it renders beside the link (trailing) rather than nested
853842 // inside the <a>, and the label itself stays the link.
@@ -870,13 +859,11 @@ function QueuesWithMetricsView() {
870859 ) : undefined
871860 }
872861 >
873- { queue . concurrency ?. overriddenAt ? (
874- "Override"
875- ) : queue . concurrencyLimit ? (
876- "User"
877- ) : (
878- "Environment"
879- ) }
862+ { queue . concurrency ?. overriddenAt
863+ ? "Override"
864+ : queue . concurrencyLimit
865+ ? "User"
866+ : "Environment" }
880867 </ TableCell >
881868 < TableCell
882869 to = { queueDetailPath }
@@ -1258,8 +1245,8 @@ const QUEUE_HEADER_TILES: QueueHeaderTile[] = [
12581245 label : "Env saturation" ,
12591246 description : (
12601247 < >
1261- How much of the environment's concurrency these queues are using. Turns{ " " }
1262- < WarningSwatch /> above 100%, when they're into burst capacity.
1248+ How much of the environment's concurrency these queues are using. Turns < WarningSwatch /> { " " }
1249+ above 100%, when they're into burst capacity.
12631250 </ >
12641251 ) ,
12651252 color : "var(--color-queues)" ,
@@ -1303,8 +1290,8 @@ const QUEUE_HEADER_TILES: QueueHeaderTile[] = [
13031290 label : "Scheduling delay p95" ,
13041291 description : (
13051292 < >
1306- How long runs wait before they start (95% start faster than this). Turns{ " " }
1307- < WarningSwatch /> above 1 minute.
1293+ How long runs wait before they start (95% start faster than this). Turns < WarningSwatch /> { " " }
1294+ above 1 minute.
13081295 </ >
13091296 ) ,
13101297 totalTooltip : "The worst p95 in the selected window." ,
@@ -1476,7 +1463,10 @@ function QueueEnvMetricChart({
14761463 />
14771464 ) : (
14781465 < span
1479- className = { cn ( "text-xs font-normal tabular-nums text-text-dimmed" , totalClassName ) }
1466+ className = { cn (
1467+ "text-xs font-normal tabular-nums text-text-dimmed" ,
1468+ totalClassName
1469+ ) }
14801470 >
14811471 { peak }
14821472 </ span >
0 commit comments