Adding a error message on InActive selection on Teams tab on Projects. #180

Merged
vikas.nale merged 1 commits from Kartik_Bug#441 into Issue_Jun_1W 2025-06-03 11:54:33 +00:00
Showing only changes of commit 99b64a9bf0 - Show all commits

View File

@ -333,8 +333,12 @@ const Teams = ({ project }) => {
</tbody> </tbody>
</table> </table>
)} )}
{(!employeeLodaing && employees.length == 0 )&& ( {!employeeLodaing && filteredEmployees.length === 0 && (
<span>No employees assigned to the project</span> <div className="text-center text-muted py-3">
{activeEmployee
? "No active employees assigned to the project"
: "No inactive employees assigned to the project"}
</div>
)} )}
</div> </div>
</div> </div>