mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Include full CVE in description when no hosts are affected (#31370)
Closes #31377 # Checklist for submitter If some of the following don't apply, delete the relevant line. - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/guides/committing-changes.md#changes-files) for more information. ## Testing - [x] QA'd all new/changed functionality manually
This commit is contained in:
parent
2fd248c77a
commit
39097df51f
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ const SoftwareVulnerabilityDetailsPage = ({
|
|||
{isVulnError || !vuln ? (
|
||||
<DetailsNoHosts
|
||||
header="Vulnerability not detected"
|
||||
details="No hosts are affected by this CVE."
|
||||
details={`No hosts are affected by ${routeParams.cve}.`}
|
||||
/>
|
||||
) : (
|
||||
renderCards(vuln)
|
||||
|
|
|
|||
Loading…
Reference in a new issue