We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bf4f5e commit e1db2d2Copy full SHA for e1db2d2
wicket/src/ui/panes/rack_setup.rs
@@ -712,13 +712,16 @@ fn rss_config_text<'a>(
712
),
713
(
714
"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
- }),
+ rack_network_config.as_ref().map_or(
+ "(will be chosen randomly)".into(),
+ |c| {
+ match c.rack_subnet_address {
+ Some(v) => v.to_string(),
+ None => "(chosen randomly)".to_string(),
+ }
722
+ .into()
723
+ },
724
+ ),
725
726
727
"Infrastructure first IP: ",
0 commit comments