@eeplatform/nuxt-layer-common 1.7.41 → 1.7.43
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 +12 -0
- package/components/EnrollmentPreview.vue +14 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -455,21 +455,30 @@
|
|
|
455
455
|
Returning Learner Information
|
|
456
456
|
</v-card-title>
|
|
457
457
|
<v-row no-gutters>
|
|
458
|
-
<v-col cols="
|
|
458
|
+
<v-col cols="12" class="mb-2">
|
|
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
|
+
|
|
468
|
+
<v-col cols="12" class="mb-2">
|
|
467
469
|
<strong>Last School Year Completed:</strong>
|
|
468
|
-
{{
|
|
470
|
+
{{
|
|
471
|
+
localProps.application.returningLearnerInfo
|
|
472
|
+
?.lastSchoolYearCompleted ?? "N/A"
|
|
473
|
+
}}
|
|
469
474
|
</v-col>
|
|
475
|
+
|
|
470
476
|
<v-col cols="12">
|
|
471
477
|
<strong>Last School Attended:</strong>
|
|
472
|
-
{{
|
|
478
|
+
{{
|
|
479
|
+
localProps.application.returningLearnerInfo
|
|
480
|
+
?.lastSchoolAttended ?? "N/A"
|
|
481
|
+
}}
|
|
473
482
|
</v-col>
|
|
474
483
|
</v-row>
|
|
475
484
|
</v-card>
|