added note about combined/mulit-spaed view query column expressions

This commit is contained in:
Gani Georgiev
2024-10-07 14:24:54 +03:00
parent 253a7ca796
commit fafcf9f56d
31 changed files with 80 additions and 68 deletions

View File

@@ -85,7 +85,14 @@
<div class="col-sm-6">
<Field class="form-field form-field-toggle required" name="otp.length" let:uniqueId>
<label for={uniqueId}>Generated password length</label>
<input type="number" id={uniqueId} bind:value={collection.otp.length} required />
<input
type="number"
min="0"
step="1"
id={uniqueId}
bind:value={collection.otp.length}
required
/>
</Field>
</div>
</div>