debugger: Fix regression in rendering of stack frame list (#32682)

Piotr Osiewicz created

Closes #ISSUE

Release Notes:

- N/A

Change summary

crates/debugger_ui/src/session/running/stack_frame_list.rs | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

Detailed changes

crates/debugger_ui/src/session/running/stack_frame_list.rs 🔗

@@ -667,7 +667,10 @@ impl StackFrameList {
     }
 
     fn render_list(&mut self, _window: &mut Window, _cx: &mut Context<Self>) -> impl IntoElement {
-        div().p_1().child(list(self.list_state.clone()).size_full())
+        div()
+            .p_1()
+            .size_full()
+            .child(list(self.list_state.clone()).size_full())
     }
 }