Update StaffEvaluation.tsx #110

Merged
joseph merged 2 commits from that-fe into master 2025-02-17 20:40:24 +11:00
1 changed files with 3 additions and 11 deletions
Showing only changes of commit 15880f8bd1 - Show all commits

View File

@ -705,12 +705,12 @@ const StaffEvaluation = () => {
const columnsDetailWorking = [
{
name: 'name',
size: '25%',
size: '40%',
header: 'Name',
},
{
name: 'time_string',
size: '25%',
size: '40%',
header: 'Time',
render: (row: any) => {
return moment(row.time_string).format('YYYY/MM/DD - HH:mm:ss')
@ -718,17 +718,9 @@ const StaffEvaluation = () => {
},
{
name: 'status',
size: '25%',
size: '20%',
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) => {