@eeplatform/nuxt-layer-common 1.7.42 → 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 +6 -0
- package/components/EnrollmentPreview.vue +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -455,7 +455,7 @@
|
|
|
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(
|
|
@@ -464,13 +464,15 @@
|
|
|
464
464
|
) ?? "N/A"
|
|
465
465
|
}}
|
|
466
466
|
</v-col>
|
|
467
|
-
|
|
467
|
+
|
|
468
|
+
<v-col cols="12" class="mb-2">
|
|
468
469
|
<strong>Last School Year Completed:</strong>
|
|
469
470
|
{{
|
|
470
471
|
localProps.application.returningLearnerInfo
|
|
471
472
|
?.lastSchoolYearCompleted ?? "N/A"
|
|
472
473
|
}}
|
|
473
474
|
</v-col>
|
|
475
|
+
|
|
474
476
|
<v-col cols="12">
|
|
475
477
|
<strong>Last School Attended:</strong>
|
|
476
478
|
{{
|