Skip to content

Commit e1db2d2

Browse files
fixup! PR suggestions
1 parent 4bf4f5e commit e1db2d2

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

wicket/src/ui/panes/rack_setup.rs

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -712,13 +712,16 @@ fn rss_config_text<'a>(
712712
),
713713
(
714714
"Rack subnet address (IPv6 /56): ",
715-
rack_network_config.as_ref().map_or("(will be chosen randomly)".into(), |c| {
716-
match c.rack_subnet_address {
717-
Some(v) => v.to_string(),
718-
None => "(chosen randomly)".to_string(),
719-
}
720-
.into()
721-
}),
715+
rack_network_config.as_ref().map_or(
716+
"(will be chosen randomly)".into(),
717+
|c| {
718+
match c.rack_subnet_address {
719+
Some(v) => v.to_string(),
720+
None => "(chosen randomly)".to_string(),
721+
}
722+
.into()
723+
},
724+
),
722725
),
723726
(
724727
"Infrastructure first IP: ",

0 commit comments

Comments
 (0)