Fix TS error in manifest security view

This commit is contained in:
Joseph Schorr 2018-12-04 13:18:55 -05:00
parent cbe151c21d
commit 68bcacda25

View file

@ -46,7 +46,7 @@ export class ManifestSecurityView {
'Color': 'gray',
};
this.VulnerabilityService.forEachVulnerability(resp, function(vuln) {
this.VulnerabilityService.forEachVulnerability(resp, (vuln) => {
if (this.VulnerabilityService.LEVELS[vuln.Severity].index < highest.index) {
highest = {
'Priority': vuln.Severity,
@ -68,7 +68,7 @@ export class ManifestSecurityView {
securityStatus.featuresInfo = this.VulnerabilityService.buildFeaturesInfo(null, resp);
securityStatus.vulnerabilitiesInfo = this.VulnerabilityService.buildVulnerabilitiesInfo(null, resp);
}
}, function() {
}, () => {
securityStatus.loading = false;
securityStatus.hasError = true;
});