mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
refactor: add min to units inputs
This commit is contained in:
@@ -43,7 +43,7 @@
|
||||
<svelte:fragment slot="aside">
|
||||
<form class="form u-grid u-gap-16">
|
||||
<ul class="form-list is-multiple">
|
||||
<InputNumber id="length" label="Length" bind:value={$value} />
|
||||
<InputNumber id="length" label="Length" bind:value={$value} min={0} />
|
||||
<InputSelect id="period" label="Time Period" bind:value={$unit} {options} />
|
||||
</ul>
|
||||
</form>
|
||||
|
||||
+1
@@ -32,6 +32,7 @@
|
||||
id="size"
|
||||
label="Size"
|
||||
placeholder={$bucket.maximumFileSize.toString()}
|
||||
min={0}
|
||||
bind:value={$value} />
|
||||
<InputSelect id="bytes" label="Bytes" {options} bind:value={$unit} />
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user