bfg-common 1.2.202 → 1.2.203
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.
|
@@ -469,7 +469,7 @@ watch(
|
|
|
469
469
|
}
|
|
470
470
|
)
|
|
471
471
|
|
|
472
|
-
const validateSendData = async (value: UI_I_WizardStep[]):
|
|
472
|
+
const validateSendData = async (value: UI_I_WizardStep[]): any => {
|
|
473
473
|
wizard.setLoader(true)
|
|
474
474
|
let stepHasError = false
|
|
475
475
|
|
|
@@ -491,7 +491,7 @@ const validateSendData = async (value: UI_I_WizardStep[]): void => {
|
|
|
491
491
|
if (data) {
|
|
492
492
|
stepHasError = true
|
|
493
493
|
selectedNavItem.value = data[0]
|
|
494
|
-
data[1] !== null && (stepPosition.value = data[1])
|
|
494
|
+
// data[1] !== null && (stepPosition.value = data[1])
|
|
495
495
|
}
|
|
496
496
|
|
|
497
497
|
return {
|