Merge pull request '[AURORA-1131] - исправлен темный цвет текста на темном фоне в нередактируемой ячейке' (#6) from AURORA-1131 into test

Reviewed-on: #6
This commit is contained in:
Veronika 2026-06-26 09:47:47 +03:00
commit e71864c37f

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