From b2072518e06af3819f72862252806cebb1eb5f3d Mon Sep 17 00:00:00 2001 From: Dotta Date: Mon, 16 Mar 2026 08:15:22 -0500 Subject: [PATCH] fix: hide sticky save bar on non-config tabs to prevent layout push The sticky float-right save/cancel bar was rendering (invisible via opacity-0) on all tabs including runs, causing it to push the runs layout content. Now only rendered when showConfigActionBar is true. Also reverts the negative margin workaround from the previous attempt. Co-Authored-By: Paperclip Co-Authored-By: Claude Opus 4.6 --- ui/src/pages/AgentDetail.tsx | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/ui/src/pages/AgentDetail.tsx b/ui/src/pages/AgentDetail.tsx index d8803a3c..32c3b9d6 100644 --- a/ui/src/pages/AgentDetail.tsx +++ b/ui/src/pages/AgentDetail.tsx @@ -659,14 +659,9 @@ export function AgentDetail() { )} {/* Floating Save/Cancel (desktop) */} - {!isMobile && ( + {!isMobile && showConfigActionBar && (