added modal name- Assign Employee
This commit is contained in:
parent
bf9f09d5b4
commit
14b851b87e
@ -144,17 +144,24 @@ const MapUsers = ({
|
|||||||
|
|
||||||
<tbody>
|
<tbody>
|
||||||
{employeeLoading && allocationEmployeesData.length === 0 && (
|
{employeeLoading && allocationEmployeesData.length === 0 && (
|
||||||
<p>Loading...</p>
|
<tr>
|
||||||
|
<td>Loading..</td>
|
||||||
|
</tr>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{!employeeLoading &&
|
{!employeeLoading &&
|
||||||
allocationEmployeesData.length === 0 &&
|
allocationEmployeesData.length === 0 &&
|
||||||
filteredData.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 && (
|
{!employeeLoading && allocationEmployeesData.length > 0 && filteredData.length === 0 && (
|
||||||
<p>No matching employees found.</p>
|
<tr>
|
||||||
|
<td>No matching employees found.</td>
|
||||||
|
</tr>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{(filteredData.length > 0 ||
|
{(filteredData.length > 0 ||
|
||||||
|
Loading…
x
Reference in New Issue
Block a user