From decabd6157cdf0fd4e9928e8218d7d1572880cdf Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Tue, 2 Jul 2024 11:36:47 +0300 Subject: [PATCH] Form/Insurance: change elements order --- apps/web/Components/Calculation/Form/Insurance/config.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/apps/web/Components/Calculation/Form/Insurance/config.ts b/apps/web/Components/Calculation/Form/Insurance/config.ts index fff64e3..8555226 100644 --- a/apps/web/Components/Calculation/Form/Insurance/config.ts +++ b/apps/web/Components/Calculation/Form/Insurance/config.ts @@ -6,11 +6,9 @@ export const title = 'Страхование'; export const rows: FormTabRows = [ [['tbxLeaseObjectYear', 'selectLeaseObjectUseFor', 'selectLegalClientRegion']], - [['selectEngineType', 'tbxInsFranchise', 'selectLegalClientTown']], - [['selectLeaseObjectCategory', 'tbxMileage']], - [['tbxLeaseObjectMotorPower', 'cbxWithTrailer', 'selectGPSBrand']], - [['tbxEngineVolume', 'cbxInsDecentral', 'selectGPSModel']], - [['selectLeasingWithoutKasko', 'selectInsNSIB']], + [['tbxMileage', 'tbxInsFranchise', 'selectLegalClientTown']], + [['selectGPSBrand', 'cbxWithTrailer', 'selectInsNSIB']], + [['selectGPSModel', 'cbxInsDecentral', 'selectLeasingWithoutKasko']], ]; export const mobileRows = transformRowsForMobile(rows);