@nualang/nualang-ui-components 0.1.1337 → 0.1.1338
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -388,7 +388,7 @@ function AssignmentCellData({
|
|
|
388
388
|
let cellData = null;
|
|
389
389
|
let submittedLate = false;
|
|
390
390
|
let daysLate = null;
|
|
391
|
-
if (data?.submittedLate
|
|
391
|
+
if (data?.submittedLate?.isLate === true) {
|
|
392
392
|
submittedLate = true;
|
|
393
393
|
daysLate = data.submittedLate.daysLate;
|
|
394
394
|
}
|
|
@@ -490,7 +490,7 @@ function TopicCellData({
|
|
|
490
490
|
let cellData = null;
|
|
491
491
|
let submittedLate = false;
|
|
492
492
|
let daysLate = null;
|
|
493
|
-
if (data?.submittedLate
|
|
493
|
+
if (data?.submittedLate?.isLate === true) {
|
|
494
494
|
submittedLate = true;
|
|
495
495
|
daysLate = data.submittedLate.daysLate;
|
|
496
496
|
}
|