From 91e92a3aa204f19b3e2ae1bdc4abcc7384c23dac Mon Sep 17 00:00:00 2001 From: Matt Young Date: Fri, 21 Jun 2024 21:56:56 -0500 Subject: [PATCH] correct error in TabulationController --- app/Http/Controllers/Tabulation/TabulationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Tabulation/TabulationController.php b/app/Http/Controllers/Tabulation/TabulationController.php index e0f2921..7cf7cbd 100644 --- a/app/Http/Controllers/Tabulation/TabulationController.php +++ b/app/Http/Controllers/Tabulation/TabulationController.php @@ -39,7 +39,7 @@ class TabulationController extends Controller } if ($this->doublerService->studentIsDoubler($entry->student_id)) { // If this entry is a doubler - if ($this->doublerService->getDoublerInfo($entry->student_id)[$entry->id]['status']) { // If there is no decision for this entry + if ($this->doublerService->getDoublerInfo($entry->student_id)[$entry->id]['status'] === 'undecided') { // If there is no decision for this entry $doublerComplete = false; } }