aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/flex.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/layout/flex.rs')
-rw-r--r--components/layout/flex.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout/flex.rs b/components/layout/flex.rs
index 3ccbb59a4b4..d8f0f167198 100644
--- a/components/layout/flex.rs
+++ b/components/layout/flex.rs
@@ -922,7 +922,8 @@ impl Flow for FlexFlow {
.base
.flags
.contains(FlowFlags::IS_ABSOLUTELY_POSITIONED)
- }).map(|(index, flow)| FlexItem::new(index, flow))
+ })
+ .map(|(index, flow)| FlexItem::new(index, flow))
.collect();
items.sort_by_key(|item| item.order);