@eeplatform/nuxt-layer-common 1.7.41 → 1.7.42
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.
- package/CHANGELOG.md +6 -0
- package/components/EnrollmentPreview.vue +10 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -459,17 +459,24 @@
|
|
|
459
459
|
<strong>Last Grade Level Completed:</strong>
|
|
460
460
|
{{
|
|
461
461
|
formatGradeLevel(
|
|
462
|
-
localProps.application.
|
|
462
|
+
localProps.application.returningLearnerInfo
|
|
463
|
+
?.lastGradeLevelCompleted ?? ""
|
|
463
464
|
) ?? "N/A"
|
|
464
465
|
}}
|
|
465
466
|
</v-col>
|
|
466
467
|
<v-col cols="6" class="mb-2">
|
|
467
468
|
<strong>Last School Year Completed:</strong>
|
|
468
|
-
{{
|
|
469
|
+
{{
|
|
470
|
+
localProps.application.returningLearnerInfo
|
|
471
|
+
?.lastSchoolYearCompleted ?? "N/A"
|
|
472
|
+
}}
|
|
469
473
|
</v-col>
|
|
470
474
|
<v-col cols="12">
|
|
471
475
|
<strong>Last School Attended:</strong>
|
|
472
|
-
{{
|
|
476
|
+
{{
|
|
477
|
+
localProps.application.returningLearnerInfo
|
|
478
|
+
?.lastSchoolAttended ?? "N/A"
|
|
479
|
+
}}
|
|
473
480
|
</v-col>
|
|
474
481
|
</v-row>
|
|
475
482
|
</v-card>
|