@byu-oit/vue-decision-processing-components 8.30.0 → 8.31.0
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 +19 -0
- package/DetailsFilenoteList.vue +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
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.31.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.30.1...v8.31.0) (2022-12-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* remove properties ([6b63ed2](https://github.com/byu-oit/vue-decision-processing-components/commit/6b63ed28cb5646217735832b5b54c89d8a21fff6))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* version ([340661e](https://github.com/byu-oit/vue-decision-processing-components/commit/340661e23dc6894e89223534d6c821ea9ed9f8be))
|
|
16
|
+
|
|
17
|
+
### [8.30.1](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.30.0...v8.30.1) (2022-11-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* variable reference ([dd13b9c](https://github.com/byu-oit/vue-decision-processing-components/commit/dd13b9ccdbb0b97d2b226bea21c7789d4bfbf947))
|
|
23
|
+
|
|
5
24
|
## [8.30.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.29.6...v8.30.0) (2022-11-09)
|
|
6
25
|
|
|
7
26
|
|
package/DetailsFilenoteList.vue
CHANGED
|
@@ -79,7 +79,7 @@ export default {
|
|
|
79
79
|
q.append('categoryId', 'CESADM')
|
|
80
80
|
q.append('sortAscending', 'true')
|
|
81
81
|
q.append('results', '100')
|
|
82
|
-
const url = `https://api.byu.edu:443/domains/ymessage-archive/1.0/student-overview/${
|
|
82
|
+
const url = `https://api.byu.edu:443/domains/ymessage-archive/1.0/student-overview/${personId}?${q.toString()}`
|
|
83
83
|
|
|
84
84
|
const headers = {
|
|
85
85
|
'accept': 'application/json'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byu-oit/vue-decision-processing-components",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.31.0",
|
|
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",
|