Merge 2f8040df44
into 4b88ee41bd
This commit is contained in:
commit
6926750f36
|
@ -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;
|
||||
|
|
|
@ -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])
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue