Merge pull request #1403 from coreos-inc/clairuifixes

Fix handling of Defcon 1
This commit is contained in:
josephschorr 2016-04-22 15:11:46 -04:00
commit 866b28b165
5 changed files with 5 additions and 5 deletions

View file

@ -168,7 +168,7 @@ angular.module('quay').directive('repoPanelTags', function () {
VulnerabilityService.forEachVulnerability(resp, function(vuln) {
if (VulnerabilityService.LEVELS[vuln.Severity].index == 0) {
$scope.defcon1[vuln.ID] = v;
$scope.defcon1[vuln.Name] = vuln;
$scope.hasDefcon1 = true;
}