mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
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:
parent
8c9feedc98
commit
cde104dbd2
2 changed files with 2 additions and 1 deletions
1
changes/15724-remove-bullets-from-CVEs
Normal file
1
changes/15724-remove-bullets-from-CVEs
Normal file
|
|
@ -0,0 +1 @@
|
|||
On Software page, CVE tooltip no longer has bullets.
|
||||
|
|
@ -74,7 +74,7 @@ const generateTooltip = (
|
|||
>
|
||||
<ul className={`${baseClass}__vulnerability-list`}>
|
||||
{condensedVulnerabilties.map((vulnerability) => {
|
||||
return <li>• {vulnerability}</li>;
|
||||
return <li>{vulnerability}</li>;
|
||||
})}
|
||||
</ul>
|
||||
</ReactTooltip>
|
||||
|
|
|
|||
Loading…
Reference in a new issue