@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eeplatform/nuxt-layer-common
2
2
 
3
+ ## 1.7.42
4
+
5
+ ### Patch Changes
6
+
7
+ - 83d93b9: Fix returning learner information
8
+
3
9
  ## 1.7.41
4
10
 
5
11
  ### Patch Changes
@@ -459,17 +459,24 @@
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
467
  <v-col cols="6" class="mb-2">
467
468
  <strong>Last School Year Completed:</strong>
468
- {{ localProps.application.lastSchoolYearCompleted ?? "N/A" }}
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
- {{ localProps.application.lastSchoolAttended ?? "N/A" }}
476
+ {{
477
+ localProps.application.returningLearnerInfo
478
+ ?.lastSchoolAttended ?? "N/A"
479
+ }}
473
480
  </v-col>
474
481
  </v-row>
475
482
  </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.42",
6
6
  "main": "./nuxt.config.ts",
7
7
  "publishConfig": {
8
8
  "access": "public"