We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67541a0 commit 5570672Copy full SHA for 5570672
2 files changed
scancodeio/static/main.css
@@ -391,9 +391,6 @@ progress.file-upload::before {
391
#message-list th#column-severity {
392
min-width: 110px;
393
}
394
-th#column-vulnerability_id {
395
- min-width: 220px;
396
-}
397
th#column-summary {
398
width: 40%;
399
scanpipe/templates/scanpipe/includes/vulnerability_id.html
@@ -1,5 +1,10 @@
1
-{{ vulnerability.advisory_id }}
2
-
+{% if vulnerability.resource_url %}
+ <a href="{{ vulnerability.resource_url }}" target="_blank">{{ vulnerability.advisory_id }}
3
+ <i class="fa-solid fa-up-right-from-square mini"></i>
4
+ </a>
5
+{% else %}
6
+ {{ vulnerability.advisory_id }}
7
+{% endif %}
8
<ul class="mb-0">
9
{% for alias in vulnerability.aliases %}
10
<li>
0 commit comments