@rhc-shared-components/packages-table 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -1
- package/dist/index.modern.js +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2534,7 +2534,10 @@ var PackagesTable = function PackagesTable(_ref) {
|
|
|
2534
2534
|
}) === index;
|
|
2535
2535
|
});
|
|
2536
2536
|
uniqueVulnerabilities.filter(function (vulnerability) {
|
|
2537
|
-
if (vulnerability.rpm_nvra_with_link_data.length > 0)
|
|
2537
|
+
if (vulnerability.rpm_nvra_with_link_data.length > 0) {
|
|
2538
|
+
console.log(vulnerability);
|
|
2539
|
+
return vulnerability;
|
|
2540
|
+
}
|
|
2538
2541
|
});
|
|
2539
2542
|
setUniqueVulnerabilities(uniqueVulnerabilities);
|
|
2540
2543
|
}, [rpms, vulnerabilities]);
|
package/dist/index.modern.js
CHANGED
|
@@ -2339,7 +2339,10 @@ const PackagesTable = ({
|
|
|
2339
2339
|
// filter out vulnerabilities with duplicate CVE IDs
|
|
2340
2340
|
uniqueVulnerabilities.filter((value, index, self) => self.findIndex(vulnerability => vulnerability.cve_id === value.cve_id) === index);
|
|
2341
2341
|
uniqueVulnerabilities.filter(vulnerability => {
|
|
2342
|
-
if (vulnerability.rpm_nvra_with_link_data.length > 0)
|
|
2342
|
+
if (vulnerability.rpm_nvra_with_link_data.length > 0) {
|
|
2343
|
+
console.log(vulnerability);
|
|
2344
|
+
return vulnerability;
|
|
2345
|
+
}
|
|
2343
2346
|
});
|
|
2344
2347
|
setUniqueVulnerabilities(uniqueVulnerabilities);
|
|
2345
2348
|
}, [_rpms, _vulnerabilities]);
|