From 903b32084ae0f186888f53410f531b86dcbb7025 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Wed, 19 Jul 2023 14:49:27 +0300 Subject: [PATCH] [2] Calculation/config: increase Min/Max PriceChange --- apps/web/Components/Calculation/config/elements-props.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/Components/Calculation/config/elements-props.tsx b/apps/web/Components/Calculation/config/elements-props.tsx index 5b2a81c..b17bce5 100644 --- a/apps/web/Components/Calculation/config/elements-props.tsx +++ b/apps/web/Components/Calculation/config/elements-props.tsx @@ -429,7 +429,7 @@ const props: Partial = { }, tbxMaxPriceChange: { min: 0, - max: 100_000_000, + max: 1_000_000_000, step: 10_000, parser, formatter, @@ -439,7 +439,7 @@ const props: Partial = { }, tbxMinPriceChange: { min: 0, - max: 100_000_000, + max: 1_000_000_000, step: 10_000, parser, formatter,