Merge pull request #166 from SDSRV-IDP/yagin-hot-fix

Update DocumentCompareInfo.tsx
This commit is contained in:
Đỗ Xuân Tân 2024-12-05 16:47:45 +07:00 committed by GitHub Enterprise
commit a106c96f2a

View File

@ -26,7 +26,7 @@ const DocumentCompareInfo = ({ key, data, selectedFileDataSource, updateRevisedB
key: selectedFileDataSource[data]?.[REVIEWED_RESULT] || '3', key: selectedFileDataSource[data]?.[REVIEWED_RESULT] || '3',
label: 'Revised', label: 'Revised',
children: <Input children: <Input
style={{ background: shouldRevised ? 'yellow' : '' }} style={{ background: shouldRevised ? 'yellow' : '', padding: '0' }}
value={selectedFileDataSource[data]?.[REVIEWED_RESULT]} value={selectedFileDataSource[data]?.[REVIEWED_RESULT]}
size='small' size='small'
onChange={(e) => onChange={(e) =>
@ -66,4 +66,4 @@ const DocumentCompareInfo = ({ key, data, selectedFileDataSource, updateRevisedB
) )
} }
export default DocumentCompareInfo; export default DocumentCompareInfo;