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

Closes #ISSUE

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2025-06-13 13:17:03 +02:00 committed by GitHub
parent 9427833fdf
commit 2c491d3a66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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())
}
}