@byu-oit/vue-decision-processing-components 8.27.1 → 8.27.2

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
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [8.27.2](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.27.1...v8.27.2) (2022-06-24)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * some applications have a 3rd field for GPA ([e18e15f](https://github.com/byu-oit/vue-decision-processing-components/commit/e18e15fe8a64303c92691e8e4b2cded06dfd9586))
11
+
5
12
  ### [8.27.1](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.27.0...v8.27.1) (2022-06-15)
6
13
 
7
14
 
@@ -87,7 +87,7 @@
87
87
  return highSchool.gpaCalculated
88
88
  }
89
89
  } else {
90
- return highSchool.highSchoolGpa
90
+ return highSchool.highSchoolGpa || highSchool.officialGpa
91
91
  }
92
92
  } else {
93
93
  return ''
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byu-oit/vue-decision-processing-components",
3
- "version": "8.27.1",
3
+ "version": "8.27.2",
4
4
  "description": "Vue components shared between decision processing systems for the CES schools.",
5
5
  "dependencies": {
6
6
  "@fortawesome/fontawesome-free": "^5.15.4",
@@ -185,6 +185,7 @@ export const parseHighSchoolSummaries = a => {
185
185
  graduationStatus: get(h, 'graduation_status.value'),
186
186
  graduationDate: get(h, 'graduation_date.value'),
187
187
  highSchoolGpa: get(h, 'high_school_gpa.value'),
188
+ officialGpa: get(h, 'official_gpa.value'),
188
189
  gpaCalculated: get(h, 'gpa_calculated.value'),
189
190
  concurrentEnrollment: get(h, 'concurrent_enrollment.value'),
190
191
  updatedDateTime: get(h, 'updated_date_time.value'),
@@ -9,6 +9,7 @@
9
9
  * graduationStatus: '',
10
10
  * graduationDate: '',
11
11
  * highSchoolGpa: '',
12
+ * officialGpa: '',
12
13
  * gpaCalculated: '',
13
14
  * concurrentEnrollment: '',
14
15
  * updatedDateTime: '',