@byu-oit/vue-decision-processing-components 8.33.0 → 8.33.1
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 +7 -0
- package/ReportViewer.vue +8 -0
- package/package.json +2 -2
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.33.1](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.33.0...v8.33.1) (2023-07-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* report viewer needs to handle new/old/packet values for the appService variable, not just booleans ([cac81bc](https://github.com/byu-oit/vue-decision-processing-components/commit/cac81bcf3b379b7466df6118f082ebaa4c7f8a93))
|
|
11
|
+
|
|
5
12
|
## [8.33.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.32.3...v8.33.0) (2023-03-20)
|
|
6
13
|
|
|
7
14
|
|
package/ReportViewer.vue
CHANGED
|
@@ -96,6 +96,14 @@ export default {
|
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
calculatedBaseUrl () {
|
|
99
|
+
if (this.selectedReport.appService === 'new') {
|
|
100
|
+
return this.appBaseUrl + '/proxy/report'
|
|
101
|
+
} else if (this.selectedReport.appService === 'old') {
|
|
102
|
+
return this.appBaseUrl + '/report'
|
|
103
|
+
} else if (this.selectedReport.appService === 'packet') {
|
|
104
|
+
return this.packetBaseUrl + '/report'
|
|
105
|
+
}
|
|
106
|
+
|
|
99
107
|
let reportUrl = ''
|
|
100
108
|
if (this.selectedReport.appService) {
|
|
101
109
|
reportUrl = this.appBaseUrl
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byu-oit/vue-decision-processing-components",
|
|
3
|
-
"version": "8.33.
|
|
3
|
+
"version": "8.33.1",
|
|
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",
|
|
7
7
|
"@fortawesome/fontawesome-svg-core": "^1.2.36",
|
|
8
8
|
"@fortawesome/free-regular-svg-icons": "^5.15.4",
|
|
9
9
|
"@fortawesome/free-solid-svg-icons": "^5.15.4",
|
|
10
|
-
"@fortawesome/vue-fontawesome": "^2.0.
|
|
10
|
+
"@fortawesome/vue-fontawesome": "^2.0.10",
|
|
11
11
|
"csv-string": "^4.0.1",
|
|
12
12
|
"is-iso-date": "0.0.1",
|
|
13
13
|
"lodash.get": "^4.4.2",
|