From 291812f3490ab28238beea38eaa3661e53ebdf11 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Tue, 28 Mar 2023 18:45:33 +0300 Subject: [PATCH] fix margin for tables Alerts --- apps/web/Components/Output/Validation.jsx | 28 +++++++++++++---------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/apps/web/Components/Output/Validation.jsx b/apps/web/Components/Output/Validation.jsx index d42e805..e5397a4 100644 --- a/apps/web/Components/Output/Validation.jsx +++ b/apps/web/Components/Output/Validation.jsx @@ -47,12 +47,14 @@ function getPaymentsTableErrors({ $tables, $process }) { const title = payments.validation.params.err_title; return errors.map(({ key, message }) => ( - + + + )); } @@ -62,12 +64,14 @@ function getInsuranceTableErrors({ $tables, $process }) { const title = insurance.validation.params.err_title; return errors.map(({ key, message }) => ( - + + + )); }