-
{detail.employeeCode}
- {detail.departmentName && (<>
•{detail.departmentName}>)}
- {detail.workLocation && (<>
•{detail.workLocation}>)}
+
{detail.fullName ?? '—'}
+
+ {detail.employeeCode}
+ {detail.departmentName && (<>•{detail.departmentName}>)}
+ {detail.workLocation && (<>•{detail.workLocation}>)}
-
+
+
{EmployeeStatusLabel[detail.employeeStatus]}
diff --git a/fe-user/src/pages/hrm/EmployeesListPage.tsx b/fe-user/src/pages/hrm/EmployeesListPage.tsx
index 74bb43e..074fdaa 100644
--- a/fe-user/src/pages/hrm/EmployeesListPage.tsx
+++ b/fe-user/src/pages/hrm/EmployeesListPage.tsx
@@ -650,14 +650,18 @@ function EmployeeDetailTabs({ detail, onDelete }: { detail: EmployeeDetail; onDe
{initials(detail.fullName)}
-
{detail.fullName ?? '—'}
-
-
{detail.employeeCode}
- {detail.departmentName && (<>
•{detail.departmentName}>)}
- {detail.workLocation && (<>
•{detail.workLocation}>)}
+
{detail.fullName ?? '—'}
+
+ {detail.employeeCode}
+ {detail.departmentName && (<>•{detail.departmentName}>)}
+ {detail.workLocation && (<>•{detail.workLocation}>)}
-
+
+
{EmployeeStatusLabel[detail.employeeStatus]}