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 635885e commit a2de37dCopy full SHA for a2de37d
codepulse/src/main/resources/toserve/pages/projects/DependencyCheck.js
@@ -63,7 +63,7 @@
63
.attr('href', function(d) { return d.url })
64
.text(function(d) { return d.name })
65
.each(function() { $(this).openInBrowser() })
66
- cveHeaders.append('a')
+ cveHeaders.select(function(d) { return !!d.cwe ? this : null; }).append('a')
67
.classed('cwe-name', true)
68
.attr('title', function(d) { return d.cwe.name })
69
.attr('href', function(d) { return d.cwe.url })
0 commit comments