feat: add description field to DetailUnit component and ListUnit table

This commit is contained in:
2025-10-23 10:48:54 +07:00
parent 4079466deb
commit e9d047fdf3
2 changed files with 23 additions and 4 deletions

View File

@@ -32,6 +32,13 @@ const columns = (showPreviewModal, showEditModal, showDeleteDialog) => [
key: 'unit_name',
width: '20%',
},
{
title: 'Description',
dataIndex: 'description',
key: 'description',
width: '25%',
render: (text) => text || '-',
},
{
title: 'Status',
dataIndex: 'is_active',