Skip to content

Commit

Permalink
fix: apply changes to ui
Browse files Browse the repository at this point in the history
  • Loading branch information
dejanb authored and ctron committed Dec 4, 2023
1 parent df1baa8 commit e67bdc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spog/ui/src/pages/cve/result/products.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@ pub fn related_products(props: &RelatedProductsProperties) -> Html {
.flat_map(|(map_key, map_value)| {
map_value
.iter()
.map(|item| TableData {
.map(|(sbom_uid, packages)| TableData {
status: map_key.clone(),
sbom_uid: item.sbom_uid.to_string(),
packages: item.packages.clone(),
sbom_uid: sbom_uid.to_string(),
packages: packages.clone(),
sbom: None,
})
.collect::<Vec<TableData>>()
Expand Down

0 comments on commit e67bdc8

Please sign in to comment.