mirror of
https://github.com/ansible/awx.git
synced 2026-04-09 03:59:21 -02:30
Adds missing semicolons to make linter happy
This commit is contained in:
@@ -347,7 +347,7 @@ export default ['$filter', '$state', '$stateParams', '$http', 'Wait',
|
|||||||
}
|
}
|
||||||
} else if (base === 'system_job_templates') {
|
} else if (base === 'system_job_templates') {
|
||||||
schedule_url = GetBasePath(base) + $stateParams.id + '/schedules/';
|
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') {
|
if (parentJobType !== 'cleanup_tokens' && parentJobType !== 'cleanup_sessions') {
|
||||||
$scope.askDaysToKeep = true;
|
$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') &&
|
if (_.has(schedule, 'summary_fields.unified_job_template.unified_job_type') &&
|
||||||
schedule.summary_fields.unified_job_template.unified_job_type === 'system_job'){
|
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') {
|
if (scheduleJobType !== 'cleanup_tokens' && scheduleJobType !== 'cleanup_sessions') {
|
||||||
$scope.askDaysToKeep = true;
|
$scope.askDaysToKeep = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user