Adds missing semicolons to make linter happy

This commit is contained in:
mabashian 2019-11-26 15:59:19 -05:00 committed by Ryan Petrello
parent ee6e28e066
commit 93a9a0354f
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777
2 changed files with 2 additions and 2 deletions

View File

@ -347,7 +347,7 @@ export default ['$filter', '$state', '$stateParams', '$http', 'Wait',
}
} else if (base === 'system_job_templates') {
schedule_url = GetBasePath(base) + $stateParams.id + '/schedules/';
let parentJobType = _.get($scope.parentObject, 'job_type')
let parentJobType = _.get($scope.parentObject, 'job_type');
if (parentJobType !== 'cleanup_tokens' && parentJobType !== 'cleanup_sessions') {
$scope.askDaysToKeep = true;
}

View File

@ -186,7 +186,7 @@ function($filter, $state, $stateParams, Wait, $scope, moment,
if (_.has(schedule, 'summary_fields.unified_job_template.unified_job_type') &&
schedule.summary_fields.unified_job_template.unified_job_type === 'system_job'){
let scheduleJobType = _.get(schedule.summary_fields.unified_job_template, 'job_type')
let scheduleJobType = _.get(schedule.summary_fields.unified_job_template, 'job_type');
if (scheduleJobType !== 'cleanup_tokens' && scheduleJobType !== 'cleanup_sessions') {
$scope.askDaysToKeep = true;
}