From da07e527e988fd523648a3e49ffb3fc8fee135e1 Mon Sep 17 00:00:00 2001 From: Veronika Tsygankova Date: Wed, 24 Jun 2026 15:52:13 +0300 Subject: [PATCH] =?UTF-8?q?[AURORA-1132]=20-=20=D0=B8=D1=81=D0=BF=D1=80?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=20=D1=82=D0=B5=D0=BC=D0=BD=D1=8B?= =?UTF-8?q?=D0=B9=20=D1=86=D0=B2=D0=B5=D1=82=20=D1=82=D0=B5=D0=BA=D1=81?= =?UTF-8?q?=D1=82=D0=B0=20=D0=BD=D0=B0=20=D1=82=D0=B5=D0=BC=D0=BD=D0=BE?= =?UTF-8?q?=D0=BC=20=D1=84=D0=BE=D0=BD=D0=B5=20=D0=B2=20=D0=BD=D0=B5=D1=80?= =?UTF-8?q?=D0=B5=D0=B4=D0=B0=D0=BA=D1=82=D0=B8=D1=80=D1=83=D0=B5=D0=BC?= =?UTF-8?q?=D0=BE=D0=B9=20=D1=8F=D1=87=D0=B5=D0=B9=D0=BA=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/RealtimeTable/Cell/Cell/Cell.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/RealtimeTable/Cell/Cell/Cell.jsx b/web/src/components/RealtimeTable/Cell/Cell/Cell.jsx index 5ef127f..5f05400 100644 --- a/web/src/components/RealtimeTable/Cell/Cell/Cell.jsx +++ b/web/src/components/RealtimeTable/Cell/Cell/Cell.jsx @@ -103,7 +103,7 @@ const Cell = React.memo(({ cell, row, column, onClick, globalFilter, backgroundC // Если isEditable false, добавляем дополнительные стили const editableStyles = !isEditable ? { border: '2px solid #d3d3d3', - color: '#525252', + color: backgroundColor?.toLowerCase() === '#933634' ? '#ffffff' : '#525252', cursor: 'not-allowed', } : {}; -- 2.47.2