Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
findolor committed Jan 7, 2025
1 parent 727071e commit 1baf280
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/settings/src/gui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,8 @@ impl YamlParseableValue for Gui {
}
gui_deployments_res.insert(deployment_name, gui_deployment);
}
if gui_res.is_some() {
gui_res.as_mut().unwrap().deployments = gui_deployments_res.clone();
if let Some(gui) = &mut gui_res {
gui.deployments.clone_from(&gui_deployments_res);
}
}
}
Expand Down

0 comments on commit 1baf280

Please sign in to comment.