Skip to content
Merged
Show file tree
Hide file tree
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
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
8 changes: 4 additions & 4 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 @@ -215,7 +215,7 @@ const BuildsTable = () => {
<TableRow>
<TableCell
colSpan={6}
className="text-start text-fg-tertiary"
className="text-center max-lg:text-start text-fg-tertiary"
>
<BackToTopButton onBackToTop={handleBackToTop} />
</TableCell>
Expand Down Expand Up @@ -272,7 +272,7 @@ const BuildsTable = () => {
<TableRow>
<TableCell
colSpan={6}
className="text-start text-fg-tertiary"
className="text-center max-lg:text-start text-fg-tertiary"
>
<LoadMoreButton
isLoading={isFetchingNextPage}
Expand Down
Loading