diff --git a/changes/22159-hide-severity-fleet-free b/changes/22159-hide-severity-fleet-free new file mode 100644 index 000000000000..ddb47088fa36 --- /dev/null +++ b/changes/22159-hide-severity-fleet-free @@ -0,0 +1 @@ +- Hide CVSS severity column from Fleet Free software details > vulnerabilities sections diff --git a/frontend/pages/SoftwarePage/components/SoftwareVulnerabilitiesTable/SoftwareVulnerabilitiesTableConfig.tsx b/frontend/pages/SoftwarePage/components/SoftwareVulnerabilitiesTable/SoftwareVulnerabilitiesTableConfig.tsx index c4a1d19618b6..531c7dd15a78 100644 --- a/frontend/pages/SoftwarePage/components/SoftwareVulnerabilitiesTable/SoftwareVulnerabilitiesTableConfig.tsx +++ b/frontend/pages/SoftwarePage/components/SoftwareVulnerabilitiesTable/SoftwareVulnerabilitiesTableConfig.tsx @@ -247,7 +247,8 @@ const generateTableConfig = ( return tableHeaders.filter( (header) => header.accessor !== "epss_probability" && - header.accessor !== "cve_published" + header.accessor !== "cve_published" && + header.accessor !== "cvss_score" ); }