From 3c0adff880034b274efe3c8e2fbd758f016ffe3a Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 20 Mar 2026 09:51:30 +0000 Subject: [PATCH] Collapse deploy logs by default on app details page --- server/src/routes/ui.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/server/src/routes/ui.rs b/server/src/routes/ui.rs index 81f6717..0e4e9ef 100644 --- a/server/src/routes/ui.rs +++ b/server/src/routes/ui.rs @@ -368,7 +368,6 @@ pub async fn app_detail( .unwrap_or_default(); let container_state = get_container_status(&app_id).await; - let latest_deploy_id = deploys.first().map(|d| d.id.as_str()).unwrap_or(""); let mut deploy_rows = String::new(); for d in &deploys { @@ -467,11 +466,7 @@ pub async fn app_detail(