Compare commits

..

No commits in common. "2de8ec623f82da8159b4990f5e1bb253e8ec62f7" and "8bc4c8a2d4be20ac3312daffded802a00dc92bc2" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ const DocumentList = ({ knowledgeBaseId }) => {
<td>
<div className='btn-group' role='group'>
<button
className='btn btn-sm btn-outline-primary me-2 d-none'
className='btn btn-sm btn-outline-primary me-2'
onClick={() => handlePreviewDocument(doc.document_id)}
>
预览

View File

@ -118,7 +118,7 @@ const DocumentPreviewModal = ({ show, documentId, knowledgeBaseId, onClose }) =>
)}
</div>
<div className='modal-footer'>
<button type='button' className='btn btn-outline-secondary' onClick={onClose}>
<button type='button' className='btn btn-secondary' onClick={onClose}>
关闭
</button>
</div>