We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea18b86 commit f2d1a34Copy full SHA for f2d1a34
1 file changed
ui/src/views/infra/zone/ZoneWizard.vue
@@ -212,7 +212,7 @@ export default {
212
this.onCloseAction()
213
},
214
onStepError (step, launchData) {
215
- this.currentStep = this.steps.findIndex(item => item.step.includes(step))
+ this.currentStep = this.zoneSteps.findIndex(item => item.step.includes(step))
216
this.stepChild = step
217
this.launchData = launchData
218
this.launchZone = false
@@ -221,7 +221,7 @@ export default {
221
onLaunchZone () {
222
this.stepFixError = false
223
this.launchZone = true
224
- this.currentStep = this.steps.findIndex(item => item.step.includes('launchZone'))
+ this.currentStep = this.zoneSteps.findIndex(item => item.step.includes('launchZone'))
225
}
226
227
0 commit comments