From 395ddb029e4695a363c8c12aedc34706ae0e0e0a Mon Sep 17 00:00:00 2001 From: samyou-softwire Date: Wed, 25 Feb 2026 15:31:50 +0000 Subject: [PATCH] =?UTF-8?q?CLDC-4164:=20Apply=20=C2=A315,000=20minimum=20v?= =?UTF-8?q?alidation=20to=20shared=20ownership=20purchase=20price?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/models/form/sales/questions/value.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/form/sales/questions/value.rb b/app/models/form/sales/questions/value.rb index c8b9cadd3..a1b4a155a 100644 --- a/app/models/form/sales/questions/value.rb +++ b/app/models/form/sales/questions/value.rb @@ -4,7 +4,7 @@ class Form::Sales::Questions::Value < ::Form::Question @id = "value" @copy_key = form.start_year_2025_or_later? ? "sales.sale_information.value.#{page.id}" : "sales.sale_information.value" @type = "numeric" - @min = 0 + @min = form.start_year_2026_or_later? ? 15_000 : 0 @step = 1 @width = 5 @prefix = "£"