From ae713fe6b2415ba1ae0b08bc2d453b68fa00ea4e Mon Sep 17 00:00:00 2001 From: Chika Date: Thu, 23 Jun 2022 16:46:07 +0300 Subject: [PATCH] Calculation: InsuranceTable column width --- .../Calculation/Form/Insurance/InsuranceTable/config.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Components/Calculation/Form/Insurance/InsuranceTable/config.tsx b/Components/Calculation/Form/Insurance/InsuranceTable/config.tsx index 96e1bc1..7c6e205 100644 --- a/Components/Calculation/Form/Insurance/InsuranceTable/config.tsx +++ b/Components/Calculation/Form/Insurance/InsuranceTable/config.tsx @@ -16,6 +16,7 @@ export const columns: ColumnsType = [ key: 'insuranceCompany', dataIndex: 'insuranceCompany', title: 'Страховая компания', + width: 300, render: (_, record) => { const Component = buildOptionComponent(record.key, Select, 'insuranceCompany'); @@ -35,7 +36,7 @@ export const columns: ColumnsType = [ { key: 'insCost', dataIndex: 'insCost', - title: 'Стоимость за первый период', + title: 'Стоимость за 1-й период', render: (_, record) => { const Component = buildValueComponent(record.key, InputNumber, 'insCost');