Add api to fetch employee project allocation

This commit is contained in:
Vikas Nale 2025-08-06 17:01:40 +05:30 committed by pramod mahajan
parent f946c38aae
commit fb2dcf073c

View File

@ -78,6 +78,18 @@ const EmpDashboard = ({ profile }) => {
</div>
)}
</div>
{project.removedDate && (
<div className="col-sm-4 col-lg-12 col-xxl-4 d-flex justify-content-xxl-end mt-1">
<div className="label-secondary">
Unassigned:{" "}
{project.removedDate ? (
new Date(project.removedDate).toLocaleDateString()
) : (
<em>NA</em>
)}
</div>
</div>
)}
</div>
</li>
))}