From adeb21be197ca3611a8b305a9256bfd469a8c667 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 17 Aug 2026 03:05:55 +0200 Subject: [PATCH] Fix Re-run button squeezing the run metadata row in the header CardAction's default row-span-2 reserved header column 2 across both the title row and the metadata dl row below it, shrinking the dl's available width (cramping the Run ID column) to fit around the button. Scope the button to just the title row and let the dl span the full header width on its own row. Co-Authored-By: Claude Sonnet 5 --- src/app/(app)/runs/[runId]/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/(app)/runs/[runId]/page.tsx b/src/app/(app)/runs/[runId]/page.tsx index 1ac4b9f..a09714d 100644 --- a/src/app/(app)/runs/[runId]/page.tsx +++ b/src/app/(app)/runs/[runId]/page.tsx @@ -71,7 +71,7 @@ export default async function RunDetailPage({ params }: RunDetailPageProps) { {run.scriptName} {script && ( - + )} -
+
Triggered by