bfg-common 1.5.490 → 1.5.491

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.
@@ -297,7 +297,7 @@ const selectedCreateType = ref<string>('0')
297
297
  if (props.isVmt) selectedCreateType.value = '-1'
298
298
 
299
299
  const wizard: Wizard = new Wizard(
300
- stepsFunc(localization.value, props.isVmt),
300
+ stepsFunc(localization.value, props.isVmt, isSphere.value),
301
301
  stepsSchemeInitial
302
302
  )
303
303
  watch(
@@ -311,7 +311,7 @@ watch(
311
311
  wizard.changeScheme(isSphere.value ? 6 : 2)
312
312
  break
313
313
  case '-1':
314
- wizard.changeScheme(10)
314
+ wizard.changeScheme(isSphere.value ? 11 : 10)
315
315
  break
316
316
  }
317
317
  },
@@ -71,7 +71,7 @@
71
71
  selectedStep.id === dynamicSteps.selectNameFolder
72
72
  "
73
73
  :name-form-submit="props.nameFormSubmit"
74
- :project="props.project"
74
+ :has-location="props.project === 'sphere'"
75
75
  :is-vmt="props.isVmt"
76
76
  :data-center="props.dataCenter"
77
77
  :validate-empty-name="props.validateEmptyName"
@@ -39,7 +39,7 @@
39
39
  selectedStep.id === dynamicSteps.selectNameFolder
40
40
  "
41
41
  :name-form-submit="props.nameFormSubmit"
42
- :project="props.project"
42
+ :has-location="props.project === 'sphere'"
43
43
  :is-vmt="props.isVmt"
44
44
  :data-center="props.dataCenter"
45
45
  :validate-empty-name="props.validateEmptyName"