@byu-oit/vue-decision-processing-components 9.0.10 → 9.0.12

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.
@@ -52,7 +52,7 @@ function calcAdmitPeriods () {
52
52
  return [`${currentYear}3`, `${currentYear}5`, `${currentYear + 1}1`, `${currentYear + 1}3`]
53
53
  }
54
54
  else if (currentMonth >= 9 && currentMonth <= 12) { // Winter Evaluated: September - December
55
- return [`${currentYear - 1}5`, `${currentYear}1`, `${currentYear}3`, `${currentYear + 1}5`]
55
+ return [`${currentYear}5`, `${currentYear+1}1`, `${currentYear+1}3`, `${currentYear + 1}5`]
56
56
  }
57
57
  return []
58
58
  }
package/Queues.vue CHANGED
@@ -125,7 +125,6 @@ import { mapState, mapGetters, mapActions } from 'vuex'
125
125
  import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
126
126
  import { faAngleDoubleLeft, faAngleDoubleRight, faSync } from '@fortawesome/free-solid-svg-icons'
127
127
  import { dateTimeFormat } from './dateTimeFormat'
128
- import api from '../../../src/api/index'
129
128
  const pageSlice = (curr, total) => {
130
129
  console.log(`in page Slice\ncurr=${curr}, total=${total}`)
131
130
  if (curr < 4) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byu-oit/vue-decision-processing-components",
3
- "version": "9.0.10",
3
+ "version": "9.0.12",
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",