Compare commits

..

No commits in common. "e71864c37f85f5c4bcc90f2e835b81aee716b97a" and "19dbc49dc0bd926186521a105325543e83bdd061" have entirely different histories.

View File

@ -103,7 +103,7 @@ const Cell = React.memo(({ cell, row, column, onClick, globalFilter, backgroundC
// Если isEditable false, добавляем дополнительные стили // Если isEditable false, добавляем дополнительные стили
const editableStyles = !isEditable ? { const editableStyles = !isEditable ? {
border: '2px solid #d3d3d3', border: '2px solid #d3d3d3',
color: backgroundColor?.toLowerCase() === '#933634' ? '#ffffff' : '#525252', color: '#525252',
cursor: 'not-allowed', cursor: 'not-allowed',
} : {}; } : {};