This commit is contained in:
Harmin Parra Rueda 2025-04-16 20:18:25 +00:00 committed by GitHub
commit 6926750f36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -46,9 +46,6 @@ table {
border: $border-width solid #e6e6e6;
vertical-align: top;
}
tr:nth-child(odd) {
background-color: #f6f6f6;
}
ul {
margin: 0;
padding: 0 20px;

View File

@ -356,7 +356,10 @@ def _process_outcome(report):
def _process_links(links):
a_tag = '<a target="_blank" href="{content}" class="col-links__extra {format_type}">{name}</a>'
a_tag = (
'<a href="{content}" class="col-links__extra {format_type}" target="_blank" rel="noopener noreferrer">'
"{name}</a>"
)
return "".join([a_tag.format_map(link) for link in links])