From 085176c593c53c5b21c963c53285eaf01acdd4f3 Mon Sep 17 00:00:00 2001 From: Vaibhav Surve Date: Tue, 8 Apr 2025 11:50:41 +0530 Subject: [PATCH] update "Not Data Found" message to "No Data Found" with improved styling --- src/pages/employee/EmployeeList.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/employee/EmployeeList.jsx b/src/pages/employee/EmployeeList.jsx index 31a83c27..e76c3c63 100644 --- a/src/pages/employee/EmployeeList.jsx +++ b/src/pages/employee/EmployeeList.jsx @@ -325,7 +325,7 @@ const EmployeeList = () =>

Loading...

} - {( !loading && employeeList?.length === 0 ) && Not Data Found } + {!loading && employeeList?.length === 0 && (No Data Found )} {( !loading && employeeList && currentItems.length === 0 && employeeList.length !==0 ) && '{searchText}' employee not found } {(currentItems && !loading) && currentItems.sort((a, b) => b.id - a.id).map((item) => (