restrict employee search to first and last name fields only #81
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "pramod_Bug#150"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Employee List -> search
Issue
this logic searched across all fields of the employeeList object, not just firstName and lastName.
It could return false positives if the value matched unrelated fields like id, email, designation, etc.
It also made the filtering unpredictable and possibly inaccurate for name-specific searches.
Fixed
now it, Strictly filtered on full name.
Accurate, case-insensitive, and user-friendly.
Prevents irrelevant data from appearing in the results.