From 15880f8bd1bb547138dfdc365ef786915dc1acc0 Mon Sep 17 00:00:00 2001 From: nguentrungthat Date: Mon, 17 Feb 2025 16:39:35 +0700 Subject: [PATCH] Update StaffEvaluation.tsx --- .../src/pages/StaffEvaluation/StaffEvaluation.tsx | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/FRONTEND/src/pages/StaffEvaluation/StaffEvaluation.tsx b/FRONTEND/src/pages/StaffEvaluation/StaffEvaluation.tsx index 0a431f3..3320ad7 100644 --- a/FRONTEND/src/pages/StaffEvaluation/StaffEvaluation.tsx +++ b/FRONTEND/src/pages/StaffEvaluation/StaffEvaluation.tsx @@ -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) => {