Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions src/features/dashboard/templates/builds/table-cells.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ export function LoadMoreButton({
}) {
if (isLoading) {
return (
<span className="flex items-center gap-2">
<Loader variant="slash" size="sm" />
Loading...
<span className="inline-flex items-center gap-1">
Loading
<Loader variant="dots" />
</span>
)
}
Expand Down Expand Up @@ -234,7 +234,7 @@ export function Reason({
return (
<CopyableCell
value={statusMessage}
className="prose-table truncate max-w-0 min-w-full text-left"
className="truncate max-w-0 min-w-full text-left"
>
{statusMessage}
</CopyableCell>
Expand Down
6 changes: 3 additions & 3 deletions src/features/dashboard/templates/builds/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const BuildsTable = () => {
<div className="flex h-full min-h-0 flex-col overflow-hidden relative">
<div
ref={scrollContainerRef}
className="min-h-0 flex-1 overflow-y-auto overflow-x-auto md:overflow-x-hidden"
className="min-h-0 flex-1 overflow-y-auto overflow-x-auto lg:overflow-x-hidden"
>
<Table suppressHydrationWarning>
<colgroup>
Expand All @@ -167,7 +167,7 @@ const BuildsTable = () => {
<col style={colStyle(COLUMN_WIDTHS.template)} />
<col style={colStyle(COLUMN_WIDTHS.started)} />
<col style={colStyle(COLUMN_WIDTHS.duration)} />
<col />
<col className="max-lg:min-w-[500px]" />
</colgroup>

<TableHeader className="sticky top-0 z-10 bg-bg">
Expand Down Expand Up @@ -272,7 +272,7 @@ const BuildsTable = () => {
<TableRow>
<TableCell
colSpan={6}
className="text-start text-fg-tertiary"
className="text-center text-fg-tertiary"
>
<LoadMoreButton
isLoading={isFetchingNextPage}
Expand Down
Loading