From 15f04f3672d87e734fe03914ff581fe264dacb14 Mon Sep 17 00:00:00 2001 From: samyou-softwire Date: Tue, 31 Mar 2026 14:59:06 +0100 Subject: [PATCH] CLDC-4298: Update purchase price step for 2026 --- app/models/form/sales/questions/purchase_price.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/form/sales/questions/purchase_price.rb b/app/models/form/sales/questions/purchase_price.rb index 24aecd7ec..8a919b55f 100644 --- a/app/models/form/sales/questions/purchase_price.rb +++ b/app/models/form/sales/questions/purchase_price.rb @@ -4,7 +4,7 @@ class Form::Sales::Questions::PurchasePrice < ::Form::Question @id = "value" @type = "numeric" @min = form.start_year_2026_or_later? ? 15_000 : 0 - @step = 0.01 + @step = form.start_year_2026_or_later? ? 1 : 0.01 # 0.01 was a mistake that was fixed in 2026 @width = 5 @prefix = "£" @ownership_sch = ownershipsch