diff --git a/web/core/components/estimates/points/create.tsx b/web/core/components/estimates/points/create.tsx index 0c05beaba9..668aaba85d 100644 --- a/web/core/components/estimates/points/create.tsx +++ b/web/core/components/estimates/points/create.tsx @@ -152,11 +152,9 @@ export const EstimatePointCreate: FC = observer((props) => }; // derived values - const inputFieldType = - estimateType && [(EEstimateSystem.TIME, EEstimateSystem.POINTS)].includes(estimateType) ? "number" : "text"; const inputProps = { - type: inputFieldType, - pattern: inputFieldType === "number" ? "[0-9]*" : undefined, + type: "text", + pattern: undefined, maxlength: MAX_ESTIMATE_POINT_INPUT_LENGTH, };