added modal name- Assign Employee
This commit is contained in:
parent
3e615b3cd6
commit
7bc0f76da4
@ -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 ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user