mirror of https://github.com/apache/cloudstack.git
ui: fix add zone dialog for fix errors (#7201)
This commit is contained in:
parent
ea18b86684
commit
f2d1a34271
|
|
@ -212,7 +212,7 @@ export default {
|
|||
this.onCloseAction()
|
||||
},
|
||||
onStepError (step, launchData) {
|
||||
this.currentStep = this.steps.findIndex(item => item.step.includes(step))
|
||||
this.currentStep = this.zoneSteps.findIndex(item => item.step.includes(step))
|
||||
this.stepChild = step
|
||||
this.launchData = launchData
|
||||
this.launchZone = false
|
||||
|
|
@ -221,7 +221,7 @@ export default {
|
|||
onLaunchZone () {
|
||||
this.stepFixError = false
|
||||
this.launchZone = true
|
||||
this.currentStep = this.steps.findIndex(item => item.step.includes('launchZone'))
|
||||
this.currentStep = this.zoneSteps.findIndex(item => item.step.includes('launchZone'))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue