Allow user to continue without filling the git url/username/password when interactive mode selected.

This commit is contained in:
Raphaël Numbus
2026-05-17 15:22:47 +02:00
parent 20553b472f
commit de890387d5
+1 -6
View File
@@ -35,18 +35,13 @@
isStepValid() {
const currentStepData = this.formData[this.step];
if (!currentStepData) return true;
if (this.step === 3 && currentStepData.deploymentMode === 'interactive') return true;
return Object.values(currentStepData).every(value => !!value);
},
goToPrevStep() {
if (this.step === 4 && this.formData[3].deploymentMode === 'interactive') {
this.step--;
}
this.step--;
},
goToNextStep() {
if (this.step === 3 && this.formData[3].deploymentMode === 'interactive') {
this.step++;
}
this.step++;
},
async startDiscovery() {