From 5447c6d5eeadb6e97ec6e344101ff9ff6b52c10e Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 15 Dec 2023 17:03:59 -0500 Subject: [PATCH] Fix channel filter input (#3686) This PR fixes the channel filter in the collab panel not showing up. Release Notes: - N/A --- crates/collab_ui2/src/collab_panel.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/collab_ui2/src/collab_panel.rs b/crates/collab_ui2/src/collab_panel.rs index ec723df25d..5f01d49878 100644 --- a/crates/collab_ui2/src/collab_panel.rs +++ b/crates/collab_ui2/src/collab_panel.rs @@ -2113,8 +2113,8 @@ impl CollabPanel { .size_full() .child(list(self.list_state.clone()).full()) .child( - div().p_2().child( - div() + v_stack().p_2().child( + v_stack() .border_primary(cx) .border_t() .child(self.filter_editor.clone()),