Removing Project name column in Attendance Logs and Regularize.

This commit is contained in:
Kartik Sharma 2025-10-09 14:56:00 +05:30
parent 2fe297c6b6
commit 210b01513e
2 changed files with 0 additions and 4 deletions

View File

@ -282,7 +282,6 @@ const AttendanceLog = ({ handleModalData, searchTerm, organizationId }) => {
<th className="border-top-1" colSpan={2}>
Name
</th>
<th className="border-top-1">Project Name</th>
<th className="border-top-1">Date</th>
{/* <th>Organization</th> */}
@ -344,7 +343,6 @@ const AttendanceLog = ({ handleModalData, searchTerm, organizationId }) => {
</div>
</div>
</td>
<td>{attendance.projectName || "--"}</td>
<td>
{moment(
attendance.checkInTime || attendance.checkOutTime

View File

@ -133,7 +133,6 @@ const Regularization = ({ handleRequest, searchTerm, projectId, organizationId,
<thead>
<tr>
<th colSpan={2}>Name</th>
<th>Project Name</th>
<th>Date</th>
{/* <th>Organization</th> */}
<th>
@ -176,7 +175,6 @@ const Regularization = ({ handleRequest, searchTerm, projectId, organizationId,
</div>
</div>
</td>
<td>{att.projectName || "--"}</td>
<td>{moment(att.checkOutTime).format("DD-MMM-YYYY")}</td>