Fix channel filter input (#3686)

This PR fixes the channel filter in the collab panel not showing up.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2023-12-15 17:03:59 -05:00 committed by GitHub
parent c8e918690f
commit 5447c6d5ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2113,8 +2113,8 @@ impl CollabPanel {
.size_full() .size_full()
.child(list(self.list_state.clone()).full()) .child(list(self.list_state.clone()).full())
.child( .child(
div().p_2().child( v_stack().p_2().child(
div() v_stack()
.border_primary(cx) .border_primary(cx)
.border_t() .border_t()
.child(self.filter_editor.clone()), .child(self.filter_editor.clone()),