fix: export start cycle min 0
This commit is contained in:
parent
af855a0c77
commit
c74707e804
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">
|
<div className="flex flex-row gap-4 w-full">
|
||||||
<FormItem label="Start cycle" disabled={exporting}>
|
<FormItem label="Start cycle" disabled={exporting}>
|
||||||
<Textbox
|
<Textbox
|
||||||
min={1}
|
min={0}
|
||||||
max={Infinity}
|
max={Infinity}
|
||||||
onBlur={(e) => {
|
onBlur={(e) => {
|
||||||
let v = parseInt(e.target.value);
|
let v = parseInt(e.target.value);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue