From 9bc1ffd0935ec95e06d41944850f3b838e659385 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Mon, 22 May 2023 15:58:55 +0300 Subject: [PATCH] Osago: totalFranchise text message --- apps/web/Components/Calculation/Form/ELT/Osago.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/web/Components/Calculation/Form/ELT/Osago.tsx b/apps/web/Components/Calculation/Form/ELT/Osago.tsx index c07653d..b328dd2 100644 --- a/apps/web/Components/Calculation/Form/ELT/Osago.tsx +++ b/apps/web/Components/Calculation/Form/ELT/Osago.tsx @@ -118,6 +118,13 @@ export function Osago() { }; } + if (column.key === 'totalFranchise') { + return { + ...column, + render: () => 'Не требуется', + }; + } + return column; });