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');