Commit 92308a8e authored by Jérome Perrin's avatar Jérome Perrin

Job Schedule: fix loop variable usage

parent f29760f7
...@@ -95,10 +95,10 @@ ...@@ -95,10 +95,10 @@
// When duration is not returned by ManPy, it is calculated by // When duration is not returned by ManPy, it is calculated by
// difference of entranceTime of this step and entranceTime of the // difference of entranceTime of this step and entranceTime of the
// next step, or completionTime when this is the last step // next step, or completionTime when this is the last step
if (i + 1 === obj.results.schedule.length) { if (j + 1 === obj.results.schedule.length) {
duration = obj.results.completionTime - schedule.entranceTime; duration = obj.results.completionTime - schedule.entranceTime;
} else { } else {
duration = obj.results.schedule[i + 1] duration = obj.results.schedule[j + 1]
.entranceTime - schedule.entranceTime; .entranceTime - schedule.entranceTime;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment