topic description fix bug

This commit is contained in:
Dimas Atmodjo 2024-11-19 11:10:40 +07:00
parent 9ddd10bb77
commit c22e6f7e0c

View File

@ -83,6 +83,7 @@ const ManageTopics = () => {
<th>No</th> <th>No</th>
<th>Section</th> <th>Section</th>
<th>Topic</th> <th>Topic</th>
<th>Description</th>
<th className='text-center'>Action</th> <th className='text-center'>Action</th>
</tr> </tr>
</thead> </thead>
@ -105,6 +106,7 @@ const ManageTopics = () => {
<td>{index + 1}</td> <td>{index + 1}</td>
<td>{sectionSlug[topic.ID_SECTION]}</td> <td>{sectionSlug[topic.ID_SECTION]}</td>
<td>{topic.NAME_TOPIC}</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 d-flex justify-content-center'>
<Button size='sm' className='btn-edit' onClick={() => handleShow(topic)}> <Button size='sm' className='btn-edit' onClick={() => handleShow(topic)}>
<i className="bi bi-pencil-square"></i> <i className="bi bi-pencil-square"></i>