diff --git a/crates/ui2/src/components/list.rs b/crates/ui2/src/components/list.rs index f664bbb547..fa4ec4fd74 100644 --- a/crates/ui2/src/components/list.rs +++ b/crates/ui2/src/components/list.rs @@ -520,13 +520,10 @@ impl ListDetailsEntry { .map(|meta| Label::new(meta).color(LabelColor::Muted)), ) .child( - h_stack().gap_1().justify_end().children( - self.actions - .take() - .unwrap_or_default() - .into_iter() - .map(|action| action), - ), + h_stack() + .gap_1() + .justify_end() + .children(self.actions.take().unwrap_or_default()), ) } }