From 31e050c4f3728f1d8d6f22e24fbcb57ed4022ab2 Mon Sep 17 00:00:00 2001 From: Ben Fornefeld Date: Thu, 27 Nov 2025 18:38:29 +0100 Subject: [PATCH 1/3] Refine builds table layout and loading indicator Move 'Loading' before the loader and switch to dots variant. Use inline-flex spacing. Remove prose-table class from reason cell. Change overflow-x-hidden breakpoint from md to lg and add a max-lg:min-w for the unnamed column. Center the load-more row text --- src/features/dashboard/templates/builds/table-cells.tsx | 8 ++++---- src/features/dashboard/templates/builds/table.tsx | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/features/dashboard/templates/builds/table-cells.tsx b/src/features/dashboard/templates/builds/table-cells.tsx index e6fa1a83..6a841b74 100644 --- a/src/features/dashboard/templates/builds/table-cells.tsx +++ b/src/features/dashboard/templates/builds/table-cells.tsx @@ -98,9 +98,9 @@ export function LoadMoreButton({ }) { if (isLoading) { return ( - - - Loading... + + Loading + ) } @@ -234,7 +234,7 @@ export function Reason({ return ( {statusMessage} diff --git a/src/features/dashboard/templates/builds/table.tsx b/src/features/dashboard/templates/builds/table.tsx index db1e9604..023df421 100644 --- a/src/features/dashboard/templates/builds/table.tsx +++ b/src/features/dashboard/templates/builds/table.tsx @@ -158,7 +158,7 @@ const BuildsTable = () => {
@@ -167,7 +167,7 @@ const BuildsTable = () => { - + @@ -272,7 +272,7 @@ const BuildsTable = () => { Date: Thu, 27 Nov 2025 18:45:11 +0100 Subject: [PATCH 2/3] Center BackToTop button in builds table --- src/features/dashboard/templates/builds/table.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/dashboard/templates/builds/table.tsx b/src/features/dashboard/templates/builds/table.tsx index 023df421..0c66b0d3 100644 --- a/src/features/dashboard/templates/builds/table.tsx +++ b/src/features/dashboard/templates/builds/table.tsx @@ -215,7 +215,7 @@ const BuildsTable = () => { From f8d5fa6fc919a27ac8d5a3d81b1500f53130e2d1 Mon Sep 17 00:00:00 2001 From: Ben Fornefeld Date: Thu, 27 Nov 2025 18:46:54 +0100 Subject: [PATCH 3/3] Left-align table controls on small screens --- src/features/dashboard/templates/builds/table.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/dashboard/templates/builds/table.tsx b/src/features/dashboard/templates/builds/table.tsx index 0c66b0d3..37b9f013 100644 --- a/src/features/dashboard/templates/builds/table.tsx +++ b/src/features/dashboard/templates/builds/table.tsx @@ -215,7 +215,7 @@ const BuildsTable = () => { @@ -272,7 +272,7 @@ const BuildsTable = () => {