From de890387d5ce158a329177e3356bafeb6c15ea97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Sun, 17 May 2026 15:22:47 +0200 Subject: [PATCH] Allow user to continue without filling the git url/username/password when interactive mode selected. --- web/pages/preparation.html | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/web/pages/preparation.html b/web/pages/preparation.html index 23ebddb..c72a36c 100644 --- a/web/pages/preparation.html +++ b/web/pages/preparation.html @@ -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() {