Skip to content

Commit

Permalink
fix (engsw): limit check adjusted
Browse files Browse the repository at this point in the history
  • Loading branch information
santanche committed Sep 14, 2023
1 parent e6c855f commit 9394472
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
// console.log('============ current greater then release',pastRelease)
// console.log('============ current date greater then expiration',labExpired)

if (pastRelease && highestLab >= i){
if (pastRelease && highestLab > i){
if (labProgressManager.i.lab[i]['property'] != null && labProgressManager.i.lab[i]['property'] == '0'){
labDelivered = true
}
Expand Down

0 comments on commit 9394472

Please sign in to comment.