@byu-oit/vue-decision-processing-components 9.5.0 → 9.5.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/Report.vue +4 -0
- package/package.json +1 -1
package/Report.vue
CHANGED
|
@@ -81,6 +81,7 @@ import ReportSvg from './ReportSvg.vue'
|
|
|
81
81
|
import Reports from './vuexModules/reports'
|
|
82
82
|
import DatePicker from 'vue2-datepicker'
|
|
83
83
|
import ByuDateSelector from "./ByuDateSelector.vue"
|
|
84
|
+
import { mapState } from 'vuex'
|
|
84
85
|
|
|
85
86
|
let tabHiddenState = document.hidden
|
|
86
87
|
|
|
@@ -141,6 +142,9 @@ export default {
|
|
|
141
142
|
}
|
|
142
143
|
},
|
|
143
144
|
computed: {
|
|
145
|
+
...mapState({
|
|
146
|
+
institution: state => state.ui.institution
|
|
147
|
+
}),
|
|
144
148
|
metadata () {
|
|
145
149
|
return this.$store.getters.reportMetadata(this.reportName)
|
|
146
150
|
},
|
package/package.json
CHANGED