mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 19:30:39 -03:30
fixed issue with scheduler interval being treated as a string.
This commit is contained in:
parent
326581c44f
commit
aff63d9480
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user