Ensured all table headers and cells are left-aligned for consistent layout and better readability. #214

Merged
admin merged 3 commits from Kartik_Enhancement#517 into Issues_Jun_3W 2025-06-23 12:30:17 +00:00
Showing only changes of commit 3283eb389a - Show all commits

View File

@ -73,7 +73,7 @@ const EmployeeList = () => {
}
const lowercasedText = text.toLowerCase();
return data.filter((item) => {
const fullName = `${item.firstName} ${item.lastName} ${item.lastName}`.toLowerCase();
const fullName = `${item.firstName} ${item.middleName} ${item.lastName}`.toLowerCase();
const email = item.email ? item.email.toLowerCase() : "";
const phoneNumber = item.phoneNumber ? item.phoneNumber.toLowerCase() : "";
const jobRole = item.jobRole ? item.jobRole.toLowerCase() : "";