@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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @eeplatform/nuxt-layer-common
2
2
 
3
+ ## 1.7.43
4
+
5
+ ### Patch Changes
6
+
7
+ - 7980023: Fix enrollment form
8
+
9
+ ## 1.7.42
10
+
11
+ ### Patch Changes
12
+
13
+ - 83d93b9: Fix returning learner information
14
+
3
15
  ## 1.7.41
4
16
 
5
17
  ### Patch Changes
@@ -455,21 +455,30 @@
455
455
  Returning Learner Information
456
456
  </v-card-title>
457
457
  <v-row no-gutters>
458
- <v-col cols="6" class="mb-2">
458
+ <v-col cols="12" class="mb-2">
459
459
  <strong>Last Grade Level Completed:</strong>
460
460
  {{
461
461
  formatGradeLevel(
462
- localProps.application.lastGradeLevelCompleted ?? ""
462
+ localProps.application.returningLearnerInfo
463
+ ?.lastGradeLevelCompleted ?? ""
463
464
  ) ?? "N/A"
464
465
  }}
465
466
  </v-col>
466
- <v-col cols="6" class="mb-2">
467
+
468
+ <v-col cols="12" class="mb-2">
467
469
  <strong>Last School Year Completed:</strong>
468
- {{ localProps.application.lastSchoolYearCompleted ?? "N/A" }}
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
- {{ localProps.application.lastSchoolAttended ?? "N/A" }}
478
+ {{
479
+ localProps.application.returningLearnerInfo
480
+ ?.lastSchoolAttended ?? "N/A"
481
+ }}
473
482
  </v-col>
474
483
  </v-row>
475
484
  </v-card>
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@eeplatform/nuxt-layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "1.7.41",
5
+ "version": "1.7.43",
6
6
  "main": "./nuxt.config.ts",
7
7
  "publishConfig": {
8
8
  "access": "public"