mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 03:40:42 -03:30
Adds missing semicolons to make linter happy
This commit is contained in:
parent
ee6e28e066
commit
93a9a0354f
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user