diff --git a/web/src/components/inputs/input.tsx b/web/src/components/inputs/input.tsx
index 6ec51a2..cf795fe 100644
--- a/web/src/components/inputs/input.tsx
+++ b/web/src/components/inputs/input.tsx
@@ -609,6 +609,7 @@ interface NumberFieldProps {
min?: number;
max?: number;
tooltip?: JSX.Element;
+ isDecimal?: boolean;
}
export const NumberField = ({
@@ -620,7 +621,8 @@ export const NumberField = ({
max,
tooltip,
disabled,
- required
+ required,
+ isDecimal
}: NumberFieldProps) => (