Fixed decimal value of framerate change tools from being rounded to unit. #1999

This commit is contained in:
morpheus65535 2022-12-03 09:21:04 -05:00
parent ea5bf9ad07
commit 920e799468
1 changed files with 2 additions and 0 deletions

View File

@ -58,10 +58,12 @@ const FrameRateForm: FunctionComponent<Props> = ({ selections, onSubmit }) => {
<Group spacing="xs" grow>
<NumberInput
placeholder="From"
precision={2}
{...form.getInputProps("from")}
></NumberInput>
<NumberInput
placeholder="To"
precision={2}
{...form.getInputProps("to")}
></NumberInput>
</Group>