[AURORA-1132] - исправлен темный цвет текста на темном фоне в нередактируемой ячейке

This commit is contained in:
Veronika Tsygankova 2026-06-24 15:52:13 +03:00
parent 230090ae22
commit da07e527e9

View File

@ -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',
} : {};