-u manage table view

This commit is contained in:
Dimas Atmodjo 2024-11-19 14:21:02 +07:00
parent 71dfce4b59
commit ce2f1b0a9b
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ const ManageSections = () => {
<td>{index + 1}</td>
<td>{section.NAME_SECTION}</td>
<td>{section.DESCRIPTION_SECTION}</td>
<td className='text-center action-col d-flex justify-content-center'>
<td className='text-center action-col'>
<Button size='sm' className='btn-edit' onClick={() => handleShow(section)}>
<i className="bi bi-pencil-square"></i>
</Button>

View File

@ -107,7 +107,7 @@ const ManageTopics = () => {
<td>{sectionSlug[topic.ID_SECTION]}</td>
<td>{topic.NAME_TOPIC}</td>
<td>{topic.DESCRIPTION_TOPIC}</td>
<td className='text-center action-col d-flex justify-content-center'>
<td className='text-center action-col'>
<Button size='sm' className='btn-edit' onClick={() => handleShow(topic)}>
<i className="bi bi-pencil-square"></i>
</Button>