Merge pull request 'fix: export start cycle min 0' (#1888) from fix-export-min-cycle into main
Reviewed-on: https://codeberg.org/uzu/strudel/pulls/1888
This commit is contained in:
commit
b6d81ba2a0
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ export default function ExportTab(Props) {
|
|||
<div className="flex flex-row gap-4 w-full">
|
||||
<FormItem label="Start cycle" disabled={exporting}>
|
||||
<Textbox
|
||||
min={1}
|
||||
min={0}
|
||||
max={Infinity}
|
||||
onBlur={(e) => {
|
||||
let v = parseInt(e.target.value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue