From 02fcfb88d6f2c3dc9cc9bfa49e1a1cbe4ef59a09 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia Date: Tue, 6 Jan 2026 15:30:19 +0530 Subject: [PATCH] fix: estimate point input validation --- apps/web/core/components/estimates/inputs/number-input.tsx | 2 +- apps/web/core/components/estimates/inputs/root.tsx | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/web/core/components/estimates/inputs/number-input.tsx b/apps/web/core/components/estimates/inputs/number-input.tsx index 4b4db415bb8..0a4c820ac9e 100644 --- a/apps/web/core/components/estimates/inputs/number-input.tsx +++ b/apps/web/core/components/estimates/inputs/number-input.tsx @@ -18,7 +18,7 @@ export function EstimateNumberInput(props: TEstimateNumberInputProps) { className="border-none focus:ring-0 focus:border-0 focus:outline-none px-2 py-2 w-full bg-transparent text-13" placeholder={t("project_settings.estimates.create.enter_estimate_point")} autoFocus - type="number" + step="any" /> ); } diff --git a/apps/web/core/components/estimates/inputs/root.tsx b/apps/web/core/components/estimates/inputs/root.tsx index 117f68fe777..db64112ead6 100644 --- a/apps/web/core/components/estimates/inputs/root.tsx +++ b/apps/web/core/components/estimates/inputs/root.tsx @@ -1,4 +1,3 @@ -import type { FC } from "react"; // plane imports import type { TEstimateSystemKeys } from "@plane/types"; import { EEstimateSystem } from "@plane/types"; @@ -21,7 +20,7 @@ export function EstimateInputRoot(props: TEstimateInputRootProps) { case EEstimateSystem.POINTS: return ( );