From 7b3e220984475dc5caa916d506762ca578235b2f Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Sun, 18 Dec 2022 16:10:38 +0530 Subject: [PATCH] bug fixes --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 299a582..d29acb5 100644 --- a/index.html +++ b/index.html @@ -2885,8 +2885,8 @@

${RIBC.getInternList()[internId]}

- - + +
@@ -2936,7 +2936,7 @@ const internId = ratingPart.dataset.internId; const automatedPoints = parseFloat(ratingPart.querySelector('.automated-points').value.trim()); const subjectivePoints = parseFloat(ratingPart.querySelector('.subjective-points').value.trim()); - const points = completionPoints + quicknessPoints + subjectivePoints; + const points = automatedPoints + subjectivePoints; const completionDate = new Date(ratingPart.querySelector('input').value).getTime(); RIBC.admin.addCompletedTask(internId, taskId, points, { completionDate }) })