We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d127ee8 commit 6020a7cCopy full SHA for 6020a7c
bl3_save_edit_ui/src/views/item_editor/extra_part_info.rs
@@ -27,13 +27,13 @@ pub fn add_extra_part_info<'a>(
27
if let Some(positives) = &part_info.positives {
28
positives
29
.split(", ")
30
- .for_each(|p| positives_negatives.push(p.to_string()));
+ .for_each(|p| positives_negatives.push(p));
31
}
32
33
if let Some(negatives) = &part_info.negatives {
34
negatives
35
36
- .for_each(|n| positives_negatives.push(n.to_string()));
+ .for_each(|n| positives_negatives.push(n));
37
38
39
let positives_negatives = positives_negatives.join(", ");
0 commit comments