bfg-common 1.4.416 → 1.4.417

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.
@@ -96,7 +96,7 @@ const onHide = (): void => {
96
96
  const onSubmit = async (data: UI_I_FeedbackForm): Promise<void> => {
97
97
  onHide()
98
98
 
99
- const sendForm: UI_I_FeedbackForm = isNewView ? feedbackForm.value : data
99
+ const sendForm: UI_I_FeedbackForm = isNewView.value ? feedbackForm.value : data
100
100
  const isValid = await handleRequest(sendForm)
101
101
 
102
102
  if (isValid) showNotification(msgSuccess.value)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.416",
4
+ "version": "1.4.417",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",