mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-25 15:25:57 +08:00
Fixed decimal value of framerate change tools from being rounded to unit. #1999
This commit is contained in:
parent
ea5bf9ad07
commit
920e799468
1 changed files with 2 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue