Remove fw-bold in View popup at attendance logs.
This commit is contained in:
parent
dc75121d31
commit
39927f12a6
@ -124,7 +124,7 @@ const AttendLogs = ({ Id }) => {
|
|||||||
return (
|
return (
|
||||||
<div className="table-responsive">
|
<div className="table-responsive">
|
||||||
<div className="mb-3">
|
<div className="mb-3">
|
||||||
<h5 className="fw-bold mb-4">Attendance Logs</h5>
|
<h5 className="mb-4">Attendance Logs</h5>
|
||||||
{logs && !loading && (
|
{logs && !loading && (
|
||||||
<p className="mb-0 text-start">
|
<p className="mb-0 text-start">
|
||||||
Showing logs for{" "}
|
Showing logs for{" "}
|
||||||
@ -160,7 +160,7 @@ const AttendLogs = ({ Id }) => {
|
|||||||
.sort((a, b) => b.id - a.id)
|
.sort((a, b) => b.id - a.id)
|
||||||
.map((log, index) => (
|
.map((log, index) => (
|
||||||
<tr key={index}>
|
<tr key={index}>
|
||||||
<td>
|
<td>
|
||||||
{whichActivityPerform(log.activity, log.activityTime)}
|
{whichActivityPerform(log.activity, log.activityTime)}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@ -169,7 +169,7 @@ const AttendLogs = ({ Id }) => {
|
|||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>{convertShortTime(log.activityTime)}</td>
|
<td>{convertShortTime(log.activityTime)}</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
{log?.latitude != 0 ? (
|
{log?.latitude != 0 ? (
|
||||||
<i
|
<i
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user