@byu-oit/vue-decision-processing-components 9.0.3 → 9.0.5
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/FlagDialog.vue +8 -2
- package/NoAuth.vue +1 -1
- package/package.json +1 -1
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
|
+
### [9.0.5](https://github.com/byu-oit/vue-decision-processing-components/compare/v9.0.2...v9.0.5) (2024-10-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* change sign in endpoint ([1e57822](https://github.com/byu-oit/vue-decision-processing-components/commit/1e57822b3f7dbec4ab95c9e483b4fba9371d77e3))
|
|
11
|
+
|
|
5
12
|
## [8.37.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.37.0-2...v8.37.0) (2024-10-15)
|
|
6
13
|
|
|
7
14
|
|
package/FlagDialog.vue
CHANGED
|
@@ -91,8 +91,14 @@ export default {
|
|
|
91
91
|
this.editing = true
|
|
92
92
|
},
|
|
93
93
|
updateFlag () {
|
|
94
|
-
|
|
95
|
-
|
|
94
|
+
let newFlagState;
|
|
95
|
+
if (this.flag.state != null && this.flag.state != '') {
|
|
96
|
+
newFlagState = ['indeterminate', 'pass'].includes(this.flag.state.toLowerCase()) ? 'set' : 'clear'
|
|
97
|
+
}
|
|
98
|
+
else {
|
|
99
|
+
const {isSet, isCleared} = this.flag
|
|
100
|
+
newFlagState = isSet ? isCleared ? 'set' : 'clear' : 'set'
|
|
101
|
+
}
|
|
96
102
|
return this.flagUpdate({
|
|
97
103
|
applicationUuid: this.appId,
|
|
98
104
|
flagState: newFlagState,
|
package/NoAuth.vue
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<p>You do not currently have access to this system. If you are an employee in the admissions
|
|
4
4
|
office, please contact your supervisor.</p>
|
|
5
5
|
<p class="mt-3">
|
|
6
|
-
You may have an expired session. Try <a href="/
|
|
6
|
+
You may have an expired session. Try <a href="/signin">Signing in</a> again.
|
|
7
7
|
</p>
|
|
8
8
|
</section>
|
|
9
9
|
</template>
|
package/package.json
CHANGED