added modal name- Assign Employee

This commit is contained in:
Pramod Mahajan 2025-05-31 15:03:34 +05:30
parent 3e615b3cd6
commit 7bc0f76da4

View File

@ -144,17 +144,24 @@ const MapUsers = ({
<tbody>
{employeeLoading && allocationEmployeesData.length === 0 && (
<p>Loading...</p>
<tr>
<td>Loading..</td>
</tr>
)}
{!employeeLoading &&
allocationEmployeesData.length === 0 &&
filteredData.length === 0 && (
<p>All employee assigned to Project.</p>
<tr>
<td>All employee assigned to Project.</td>
</tr>
)}
{!employeeLoading && allocationEmployeesData.length > 0 && filteredData.length === 0 && (
<p>No matching employees found.</p>
<tr>
<td>No matching employees found.</td>
</tr>
)}
{(filteredData.length > 0 ||