Skip to content

Commit

Permalink
Fleet UI: Fleet free does not see empty severity column (#22408)
Browse files Browse the repository at this point in the history
  • Loading branch information
RachelElysia authored and mostlikelee committed Sep 27, 2024
1 parent 652206b commit a421ce4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions changes/22159-hide-severity-fleet-free
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Hide CVSS severity column from Fleet Free software details > vulnerabilities sections
Original file line number Diff line number Diff line change
Expand Up @@ -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"
);
}

Expand Down

0 comments on commit a421ce4

Please sign in to comment.