Merge pull request #224 from coreos-inc/npefix2

Small NPE Fix
This commit is contained in:
Jimmy Zelinskie 2015-07-13 12:07:08 -04:00
commit 9492ead3b3

View file

@ -47,6 +47,7 @@ angular.module('quay').factory('UIService', ['$timeout', '$rootScope', '$locatio
CheckStateController.prototype.buildMap_ = function() {
var that = this;
this.checked.forEach(function(item) {
if (item == null) { return; }
that.checkedMap[item[that.itemKey]] = true;
});
};