diff --git a/src/components/Activities/AttendcesLogs.jsx b/src/components/Activities/AttendcesLogs.jsx
index c98eabde..881b4c6c 100644
--- a/src/components/Activities/AttendcesLogs.jsx
+++ b/src/components/Activities/AttendcesLogs.jsx
@@ -284,9 +284,9 @@ const AttendanceLog = ({ handleModalData, searchTerm }) => {
Name
Date |
+ Organization |
- {" "}
- Check-In
+ Check-In
|
Check-Out
@@ -313,7 +313,7 @@ const AttendanceLog = ({ handleModalData, searchTerm }) => {
key={`header-${currentDate}`}
className="table-row-header"
>
- |
+ |
{moment(currentDate).format("DD-MM-YYYY")}
@@ -343,6 +343,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 5c3c1930..0f251bcc 100644
--- a/src/components/Activities/Regularization.jsx
+++ b/src/components/Activities/Regularization.jsx
@@ -128,6 +128,7 @@ const Regularization = ({ handleRequest, searchTerm }) => {
|
Name |
Date |
+ Organization |
Check-In
|
@@ -145,7 +146,7 @@ const Regularization = ({ handleRequest, searchTerm }) => {
+ />
{moment(att.checkOutTime).format("DD-MMM-YYYY")} |
+
+ {att.organizationName || "--"} |
+
{convertShortTime(att.checkInTime)} |
{att.checkOutTime ? convertShortTime(att.checkOutTime) : "--"}
@@ -166,12 +170,12 @@ const Regularization = ({ handleRequest, searchTerm }) => {
handleRequest={handleRequest}
refresh={refetch}
/>
- {/* */}
|
))}
+
) : (