From 2c3b7b23360806c76ce2db590cdcfade6106495d Mon Sep 17 00:00:00 2001 From: dmolinari Date: Fri, 20 Feb 2026 20:48:04 -0300 Subject: [PATCH] Fix: Valor Cero Input Precio --- Frontend/src/components/FormularioAviso.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frontend/src/components/FormularioAviso.tsx b/Frontend/src/components/FormularioAviso.tsx index b057a9b..03298d3 100644 --- a/Frontend/src/components/FormularioAviso.tsx +++ b/Frontend/src/components/FormularioAviso.tsx @@ -937,7 +937,7 @@ export default function FormularioAviso({ type="number" className="flex-1 min-w-0 bg-white/5 border border-white/10 rounded-xl px-4 py-3 text-white outline-none focus:border-blue-500 text-sm md:text-base" placeholder="0.00" - value={vehicleData.price || ""} + value={vehicleData.price ?? ""} onChange={(e) => handleFloatInput("price", e.target.value)} />