fix(js/logs-view): correct var name

This commit is contained in:
EvB 2017-01-31 17:03:31 -05:00
parent 356530110c
commit b05189fb3f

View file

@ -333,7 +333,7 @@ angular.module('quay').directive('logsView', function () {
var isValidEndpoint = hasValidUser || hasValidOrg || hasValidRepo || $scope.allLogs;
var hasValidLogStartDate = !!$scope.options.logStartDate;
var hadValidLogEndDate = !!$scope.options.logEndDate;
var hasValidLogEndDate = !!$scope.options.logEndDate;
var isValid = isValidEndpoint && hasValidLogStartDate && hasValidLogEndDate;