fix(js/logs-view): correct var name
This commit is contained in:
parent
356530110c
commit
b05189fb3f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Reference in a new issue