From ca11d5522891f0d198b82fa9700b19778503b9d1 Mon Sep 17 00:00:00 2001 From: PotapovaA Date: Mon, 22 Jun 2026 13:57:24 +0300 Subject: [PATCH] =?UTF-8?q?=D1=88=D0=B8=D1=80=D0=B8=D0=BD=D0=B0=20=D1=81?= =?UTF-8?q?=D1=82=D0=BE=D0=BB=D0=B1=D1=86=D0=BE=D0=B2=20=D0=BF=D0=BE=20?= =?UTF-8?q?=D1=83=D0=BC=D0=BE=D0=BB=D1=87=D0=B0=D0=BD=D0=B8=D1=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/RealtimeTable/tableColumns.jsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/web/src/components/RealtimeTable/tableColumns.jsx b/web/src/components/RealtimeTable/tableColumns.jsx index becdcdc..9b38ebd 100644 --- a/web/src/components/RealtimeTable/tableColumns.jsx +++ b/web/src/components/RealtimeTable/tableColumns.jsx @@ -104,6 +104,15 @@ export const getTableColumns = ({ const processColumns = (columns, EditCell, Cell) => { columns.forEach((col) => { + if (col.header.length > 15) { + col.size = 250; + } + if(col.header.length >= 20){ + col.size = 350; + } + if(col.header.length >= 30){ + col.size = 400; + } col.Cell = ({ cell, table, column, row }) => (