Update StaffEvaluation.tsx

This commit is contained in:
nguentrungthat 2025-02-17 16:39:35 +07:00
parent f5e4d7b405
commit 15880f8bd1
1 changed files with 3 additions and 11 deletions

View File

@ -705,12 +705,12 @@ const StaffEvaluation = () => {
const columnsDetailWorking = [ const columnsDetailWorking = [
{ {
name: 'name', name: 'name',
size: '25%', size: '40%',
header: 'Name', header: 'Name',
}, },
{ {
name: 'time_string', name: 'time_string',
size: '25%', size: '40%',
header: 'Time', header: 'Time',
render: (row: any) => { render: (row: any) => {
return moment(row.time_string).format('YYYY/MM/DD - HH:mm:ss') return moment(row.time_string).format('YYYY/MM/DD - HH:mm:ss')
@ -718,17 +718,9 @@ const StaffEvaluation = () => {
}, },
{ {
name: 'status', name: 'status',
size: '25%', size: '20%',
header: 'Status', header: 'Status',
}, },
{
name: 'created_at',
size: '25%',
header: 'Created at',
render: (row: any) => {
return moment(row.created_at).format('YYYY/MM/DD - HH:mm:ss')
},
},
] ]
const handleCreate = async (values: DataProjectReview) => { const handleCreate = async (values: DataProjectReview) => {