mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 23:17:32 -02:30
fixed issue with scheduler interval being treated as a string.
This commit is contained in:
@@ -216,7 +216,7 @@ angular.module('AngularScheduler', ['underscore'])
|
||||
var options = {};
|
||||
options.startDate = this.scope.schedulerUTCTime;
|
||||
options.frequency = this.scope.schedulerFrequency.value;
|
||||
options.interval = this.scope.schedulerInterval;
|
||||
options.interval = parseInt(this.scope.schedulerInterval);
|
||||
if (this.scope.schedulerEnd.value === 'after') {
|
||||
options.occurrenceCount = this.scope.schedulerOccurrenceCount;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user