@byu-oit/vue-decision-processing-components 8.28.0 → 8.28.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 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.28.1](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.28.0...v8.28.1) (2022-07-26)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * assign the filter/map chain to use later ([2818502](https://github.com/byu-oit/vue-decision-processing-components/commit/2818502414017f8a53dd11c804ffc0e38a2155e6))
11
+
5
12
  ## [8.28.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.27.4...v8.28.0) (2022-07-20)
6
13
 
7
14
 
package/ReportList.vue CHANGED
@@ -57,9 +57,8 @@ export default {
57
57
  institution: state => state.ui.institution
58
58
  }),
59
59
  categories () {
60
- let reports = this.reports
61
60
  // Filters reports to have reports specefic to dp institution
62
- reports.filter(ins => ins.institution.includes(state.institution)).map(ins => ins.institution)
61
+ const reports = this.reports.filter(ins => ins.institution.includes(state.institution)).map(ins => ins.institution)
63
62
  const allObjectCategories = reports.map(o => o.category)
64
63
  let uniqueCategories = new Set()
65
64
  allObjectCategories.forEach((category) => uniqueCategories.add(category))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byu-oit/vue-decision-processing-components",
3
- "version": "8.28.0",
3
+ "version": "8.28.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",