@eeplatform/nuxt-layer-common 1.7.40 → 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,18 @@
1
1
  # @eeplatform/nuxt-layer-common
2
2
 
3
+ ## 1.7.42
4
+
5
+ ### Patch Changes
6
+
7
+ - 83d93b9: Fix returning learner information
8
+
9
+ ## 1.7.41
10
+
11
+ ### Patch Changes
12
+
13
+ - f3dafc4: Fix enrollment form gwa and subject validatioin
14
+ - 992133e: Fix enrollment validations
15
+
3
16
  ## 1.7.40
4
17
 
5
18
  ### Patch Changes
@@ -206,7 +206,7 @@
206
206
  <v-col cols="12">
207
207
  <v-text-field
208
208
  v-model.number="enrollment.gwa"
209
- :rules="[requiredRule, (v:any) => v >= selectedProgram.gwa || `Required GWA is equal or greater than ${selectedProgram.gwa}`]"
209
+ :rules="[requiredRule, (v:any) => v >= selectedProgram.gwa || `Required GWA is equal or greater than ${selectedProgram.gwa}`, (v:any) => v <= 100 || 'GWA must be less than or equal to 100']"
210
210
  type="number"
211
211
  ></v-text-field>
212
212
  </v-col>
@@ -240,6 +240,7 @@
240
240
  (v:any) =>
241
241
  v >= selectedProgram.subjects[programSubjectIndex].grade ||
242
242
  `Required grade is equal or greater than ${selectedProgram.subjects[programSubjectIndex].grade}`,
243
+ (v:any) => v <= 100 || 'Grade must be less than or equal to 100',
243
244
  ]"
244
245
  >
245
246
  </v-text-field>
@@ -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.40",
5
+ "version": "1.7.42",
6
6
  "main": "./nuxt.config.ts",
7
7
  "publishConfig": {
8
8
  "access": "public"