From 61abfd5930bc6d4b9ba4fca0899b02628d623799 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Thu, 19 Jun 2025 13:27:18 -0300 Subject: [PATCH] agent: Avoid layout shift due to the "waiting for confirmation" label (#33046) Just a tiny, one-line change to avoid the "Waiting for Confirmation" animated label pushing the "allow" buttons to the side. Release Notes: - agent: Fixed layout shift in "waiting for confirmation" state in the terminal card. --- crates/agent/src/active_thread.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/agent/src/active_thread.rs b/crates/agent/src/active_thread.rs index d69edb151f..7654754624 100644 --- a/crates/agent/src/active_thread.rs +++ b/crates/agent/src/active_thread.rs @@ -3088,6 +3088,7 @@ impl ActiveThread { .pr_1() .gap_1() .justify_between() + .flex_wrap() .bg(cx.theme().colors().editor_background) .border_t_1() .border_color(self.tool_card_border_color(cx))