Allow user to continue without filling the git url/username/password when interactive mode selected.
This commit is contained in:
@@ -35,18 +35,13 @@
|
|||||||
isStepValid() {
|
isStepValid() {
|
||||||
const currentStepData = this.formData[this.step];
|
const currentStepData = this.formData[this.step];
|
||||||
if (!currentStepData) return true;
|
if (!currentStepData) return true;
|
||||||
|
if (this.step === 3 && currentStepData.deploymentMode === 'interactive') return true;
|
||||||
return Object.values(currentStepData).every(value => !!value);
|
return Object.values(currentStepData).every(value => !!value);
|
||||||
},
|
},
|
||||||
goToPrevStep() {
|
goToPrevStep() {
|
||||||
if (this.step === 4 && this.formData[3].deploymentMode === 'interactive') {
|
|
||||||
this.step--;
|
|
||||||
}
|
|
||||||
this.step--;
|
this.step--;
|
||||||
},
|
},
|
||||||
goToNextStep() {
|
goToNextStep() {
|
||||||
if (this.step === 3 && this.formData[3].deploymentMode === 'interactive') {
|
|
||||||
this.step++;
|
|
||||||
}
|
|
||||||
this.step++;
|
this.step++;
|
||||||
},
|
},
|
||||||
async startDiscovery() {
|
async startDiscovery() {
|
||||||
|
|||||||
Reference in New Issue
Block a user