From 32b9ca125de025a68ffc6068cded2429c9916f3f Mon Sep 17 00:00:00 2001 From: "gcp-cherry-pick-bot[bot]" <98988430+gcp-cherry-pick-bot[bot]@users.noreply.github.com> Date: Fri, 14 Mar 2025 18:17:55 -0400 Subject: [PATCH] Fix the feedback modal (cherry-pick #26793) (#26807) Cherry-picked Fix the feedback modal (#26793) Closes #26787 Release Notes: - Fixed a bug that prevented typing in the in-app feedback form Co-authored-by: Cole Miller --- crates/workspace/src/modal_layer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/workspace/src/modal_layer.rs b/crates/workspace/src/modal_layer.rs index e29d2bf7d4ee1e167f3c009edfe2cd133a921e41..660945676cb13017f94cf13e3291c4c3deb872ec 100644 --- a/crates/workspace/src/modal_layer.rs +++ b/crates/workspace/src/modal_layer.rs @@ -193,7 +193,7 @@ impl Render for ModalLayer { .child( h_flex() .occlude() - .child(div().child(active_modal.modal.view())) + .child(active_modal.modal.view()) .on_mouse_down(MouseButton::Left, |_, _, cx| { cx.stop_propagation(); }),