mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
Fix number field render
This commit is contained in:
@@ -137,6 +137,7 @@ export function formikUtils<V extends FormikValues>(
|
||||
/>
|
||||
);
|
||||
} else if (type === "number") {
|
||||
control = (
|
||||
<NumberField
|
||||
type={type}
|
||||
className="text-input"
|
||||
@@ -144,7 +145,8 @@ export function formikUtils<V extends FormikValues>(
|
||||
{...formikProps}
|
||||
value={value}
|
||||
isInvalid={!!error}
|
||||
/>;
|
||||
/>
|
||||
);
|
||||
} else {
|
||||
control = (
|
||||
<Form.Control
|
||||
|
||||
Reference in New Issue
Block a user