Skip to content

Commit c7a238c

Browse files
authored
Chore(webapp): Queues page UI improvements (#2826)
Very small UI improvement to increase the spacing between the right hand table columns. Also a tooltip wording improvement.
1 parent 8ba7526 commit c7a238c

File tree

1 file changed

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

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ export default function Page() {
392392
period: "30d",
393393
rootOnly: false,
394394
})}
395-
tooltip="View runs"
395+
tooltip="View running runs"
396396
/>
397397
}
398398
compactThreshold={1000000}
@@ -499,7 +499,7 @@ export default function Page() {
499499
>
500500
Limited by
501501
</TableHeaderCell>
502-
<TableHeaderCell className="w-[1%] pl-24">
502+
<TableHeaderCell className="w-[1%] pl-32">
503503
<span className="sr-only">Pause/resume</span>
504504
</TableHeaderCell>
505505
</TableRow>
@@ -571,7 +571,7 @@ export default function Page() {
571571
<TableCell
572572
alignment="right"
573573
className={cn(
574-
"w-[1%] tabular-nums",
574+
"w-[1%] pl-16 tabular-nums",
575575
queue.paused ? "opacity-50" : undefined
576576
)}
577577
>
@@ -580,7 +580,7 @@ export default function Page() {
580580
<TableCell
581581
alignment="right"
582582
className={cn(
583-
"w-[1%] tabular-nums",
583+
"w-[1%] pl-16 tabular-nums",
584584
queue.paused ? "opacity-50" : undefined,
585585
queue.running > 0 && "text-text-bright",
586586
isAtLimit && "text-warning"
@@ -591,7 +591,7 @@ export default function Page() {
591591
<TableCell
592592
alignment="right"
593593
className={cn(
594-
"w-[1%] tabular-nums",
594+
"w-[1%] pl-16 tabular-nums",
595595
queue.paused ? "opacity-50" : undefined,
596596
queue.concurrency?.overriddenAt && "font-medium text-text-bright"
597597
)}
@@ -601,7 +601,7 @@ export default function Page() {
601601
<TableCell
602602
alignment="right"
603603
className={cn(
604-
"w-[1%]",
604+
"w-[1%] pl-16",
605605
queue.paused ? "opacity-50" : undefined,
606606
isAtLimit && "text-warning",
607607
queue.concurrency?.overriddenAt && "font-medium text-text-bright"

0 commit comments

Comments
 (0)