Skip to content

Commit

Permalink
fix: remove min lenght
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmanNik committed Nov 25, 2024
1 parent d2d8fba commit 04d1d0a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/routes/(console)/project-[project]/createVariable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,12 @@
required
autofocus
autocomplete={false} />
<InputPassword id="value" label="Value" placeholder="Enter value" bind:value={pair.value} />
<InputPassword
id="value"
label="Value"
placeholder="Enter value"
bind:value={pair.value}
minlength={0} />
<InputChoice id="secret" label="Secret" bind:value={pair.secret}>
If selected, you and your team won't be able to read the values after creation.</InputChoice>
</Layout.Stack>
Expand Down

0 comments on commit 04d1d0a

Please sign in to comment.