From 93944721f57cfe462458a247d9ab1aeb4b948d16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Santanch=C3=A8?= Date: Thu, 14 Sep 2023 07:12:12 -0300 Subject: [PATCH] fix (engsw): limit check adjusted --- src/adonisjs/public/author/env/inf331_2023/js/lab-progress.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adonisjs/public/author/env/inf331_2023/js/lab-progress.js b/src/adonisjs/public/author/env/inf331_2023/js/lab-progress.js index 7f148b20..5777fb41 100644 --- a/src/adonisjs/public/author/env/inf331_2023/js/lab-progress.js +++ b/src/adonisjs/public/author/env/inf331_2023/js/lab-progress.js @@ -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 }