On Software page, CVE tooltip no longer has bullets. (#15856)

On Software page, CVE tooltip no longer has bullets.
#15724 

# Checklist for submitter

If some of the following don't apply, delete the relevant line.

<!-- Note that API documentation changes are now addressed by the
product design team. -->

- [x] Changes file added for user-visible changes in `changes/` or
`orbit/changes/`.
See [Changes
files](https://fleetdm.com/docs/contributing/committing-changes#changes-files)
for more information.
- [x] Manual QA for all new/changed functionality
This commit is contained in:
Victor Lyuboslavsky 2024-01-02 14:04:34 -06:00 committed by GitHub
parent 8c9feedc98
commit cde104dbd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -0,0 +1 @@
On Software page, CVE tooltip no longer has bullets.

View file

@ -74,7 +74,7 @@ const generateTooltip = (
>
<ul className={`${baseClass}__vulnerability-list`}>
{condensedVulnerabilties.map((vulnerability) => {
return <li>&bull; {vulnerability}</li>;
return <li>{vulnerability}</li>;
})}
</ul>
</ReactTooltip>