@byu-oit/vue-decision-processing-components 9.6.2 → 9.7.0
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/SupportDialog.vue +4 -1
- package/package.json +1 -1
package/SupportDialog.vue
CHANGED
|
@@ -124,7 +124,10 @@ export default {
|
|
|
124
124
|
headers: { 'Content-Type': 'application/json' },
|
|
125
125
|
body: JSON.stringify({
|
|
126
126
|
...body,
|
|
127
|
-
...this.email !== '' && {
|
|
127
|
+
...(this.email !== '' && {
|
|
128
|
+
u_email: this.email,
|
|
129
|
+
watch_list: this.email,
|
|
130
|
+
}),
|
|
128
131
|
})
|
|
129
132
|
}
|
|
130
133
|
|
package/package.json
CHANGED