From 8f50e8423e95e6feacd6b3a01d3f60235a51a135 Mon Sep 17 00:00:00 2001 From: Arman Date: Tue, 29 Aug 2023 18:10:12 +0200 Subject: [PATCH] fix: remove min for password lenght --- src/lib/wizards/functions/steps/templateVariables.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/wizards/functions/steps/templateVariables.svelte b/src/lib/wizards/functions/steps/templateVariables.svelte index 518526452..578c28c79 100644 --- a/src/lib/wizards/functions/steps/templateVariables.svelte +++ b/src/lib/wizards/functions/steps/templateVariables.svelte @@ -83,6 +83,7 @@ placeholder={variable.placeholder ?? 'Enter value'} required={variable.required} autocomplete={false} + minlength={variable.type === 'password' ? 0 : null} showPasswordButton={variable.type === 'password'} bind:value={$templateConfig.variables[variable.name]} />