diff --git a/src/components/Activities/AttendcesLogs.jsx b/src/components/Activities/AttendcesLogs.jsx
index 9aced215..227fd26c 100644
--- a/src/components/Activities/AttendcesLogs.jsx
+++ b/src/components/Activities/AttendcesLogs.jsx
@@ -264,9 +264,9 @@ const AttendanceLog = ({ handleModalData, searchTerm }) => {
Name
Date |
+ Organization |
- {" "}
- Check-In
+ Check-In
|
Check-Out
@@ -293,7 +293,7 @@ const AttendanceLog = ({ handleModalData, searchTerm }) => {
key={`header-${currentDate}`}
className="table-row-header"
>
- |
+ |
{moment(currentDate).format("DD-MM-YYYY")}
@@ -323,6 +323,7 @@ const AttendanceLog = ({ handleModalData, searchTerm }) => {
attendance.checkInTime || attendance.checkOutTime
).format("DD-MMM-YYYY")}
|
+ {attendance.organizationName || "--"} |
{convertShortTime(attendance.checkInTime)} |
{attendance.checkOutTime
diff --git a/src/components/Activities/Regularization.jsx b/src/components/Activities/Regularization.jsx
index 82c906b5..5f216f50 100644
--- a/src/components/Activities/Regularization.jsx
+++ b/src/components/Activities/Regularization.jsx
@@ -98,6 +98,7 @@ const Regularization = ({ handleRequest, searchTerm }) => {
|
Name |
Date |
+ Organization |
Check-In
|
@@ -115,7 +116,7 @@ const Regularization = ({ handleRequest, searchTerm }) => {
+ />
{moment(att.checkOutTime).format("DD-MMM-YYYY")} |
+
+ {att.organizationName || "--"} |
+
{convertShortTime(att.checkInTime)} |
{att.checkOutTime ? convertShortTime(att.checkOutTime) : "--"}
@@ -136,12 +140,12 @@ const Regularization = ({ handleRequest, searchTerm }) => {
handleRequest={handleRequest}
refresh={refetch}
/>
- {/* */}
|
))}
+
) : (