From ba4893a98a21dfeae8e1976bdd4519d4b8f727c4 Mon Sep 17 00:00:00 2001 From: sneak Date: Thu, 1 Jan 2026 06:48:06 -0800 Subject: [PATCH] Simplify logs pane structure to fix scrolling - Remove details/summary element that may have caused layout issues - Use simpler layout with header row and logs block below - Change overflow-auto to overflow-y-scroll to force scrollbar - Add break-all to handle long lines --- templates/deployments.html | 33 ++++++++++++++------------------- 1 file changed, 14 insertions(+), 19 deletions(-) diff --git a/templates/deployments.html b/templates/deployments.html index 1246b91..4b8295f 100644 --- a/templates/deployments.html +++ b/templates/deployments.html @@ -68,26 +68,21 @@ {{if or .Logs.Valid (eq .Status "building") (eq .Status "deploying")}} -
-
- - - +
+
+ Build Logs + {{if or (eq .Status "success") (eq .Status "failed")}} + + + - View Logs -
-
-
{{if .Logs.Valid}}{{.Logs.String}}{{else}}Loading...{{end}}
-
-
- {{if or (eq .Status "success") (eq .Status "failed")}} - - - - - Download - - {{end}} + Download + + {{end}} +
+
+
{{if .Logs.Valid}}{{.Logs.String}}{{else}}Loading...{{end}}
+
{{end}}