Fixed minimal value for time offset input field

This commit is contained in:
Adam Blahovič 2023-09-05 20:20:33 +02:00 committed by GitHub
parent 77283e4063
commit 1489926b6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 3 deletions

View File

@ -83,12 +83,25 @@ const TimeOffsetForm: FunctionComponent<Props> = ({ selections, onSubmit }) => {
></FontAwesomeIcon> ></FontAwesomeIcon>
</Button> </Button>
<NumberInput <NumberInput
min={0}
label="hour" label="hour"
{...form.getInputProps("hour")} {...form.getInputProps("hour")}
></NumberInput> ></NumberInput>
<NumberInput label="min" {...form.getInputProps("min")}></NumberInput> <NumberInput
<NumberInput label="sec" {...form.getInputProps("sec")}></NumberInput> min={0}
<NumberInput label="ms" {...form.getInputProps("ms")}></NumberInput> label="min"
{...form.getInputProps("min")}
></NumberInput>
<NumberInput
min={0}
label="sec"
{...form.getInputProps("sec")}
></NumberInput>
<NumberInput
min={0}
label="ms"
{...form.getInputProps("ms")}
></NumberInput>
</Group> </Group>
<Divider></Divider> <Divider></Divider>
<Button disabled={!enabled} type="submit"> <Button disabled={!enabled} type="submit">