Fix: Valor Cero Input Precio

This commit is contained in:
2026-02-20 20:48:04 -03:00
parent 9e57eb7f54
commit 2c3b7b2336

View File

@@ -937,7 +937,7 @@ export default function FormularioAviso({
type="number" 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" 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" placeholder="0.00"
value={vehicleData.price || ""} value={vehicleData.price ?? ""}
onChange={(e) => handleFloatInput("price", e.target.value)} onChange={(e) => handleFloatInput("price", e.target.value)}
/> />
</div> </div>