Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ export default function Page() {
period: "30d",
rootOnly: false,
})}
tooltip="View runs"
tooltip="View running runs"
/>
}
compactThreshold={1000000}
Expand Down Expand Up @@ -499,7 +499,7 @@ export default function Page() {
>
Limited by
</TableHeaderCell>
<TableHeaderCell className="w-[1%] pl-24">
<TableHeaderCell className="w-[1%] pl-32">
<span className="sr-only">Pause/resume</span>
</TableHeaderCell>
</TableRow>
Expand Down Expand Up @@ -571,7 +571,7 @@ export default function Page() {
<TableCell
alignment="right"
className={cn(
"w-[1%] tabular-nums",
"w-[1%] pl-16 tabular-nums",
queue.paused ? "opacity-50" : undefined
)}
>
Expand All @@ -580,7 +580,7 @@ export default function Page() {
<TableCell
alignment="right"
className={cn(
"w-[1%] tabular-nums",
"w-[1%] pl-16 tabular-nums",
queue.paused ? "opacity-50" : undefined,
queue.running > 0 && "text-text-bright",
isAtLimit && "text-warning"
Expand All @@ -591,7 +591,7 @@ export default function Page() {
<TableCell
alignment="right"
className={cn(
"w-[1%] tabular-nums",
"w-[1%] pl-16 tabular-nums",
queue.paused ? "opacity-50" : undefined,
queue.concurrency?.overriddenAt && "font-medium text-text-bright"
)}
Expand All @@ -601,7 +601,7 @@ export default function Page() {
<TableCell
alignment="right"
className={cn(
"w-[1%]",
"w-[1%] pl-16",
queue.paused ? "opacity-50" : undefined,
isAtLimit && "text-warning",
queue.concurrency?.overriddenAt && "font-medium text-text-bright"
Expand Down