In table remove all Capitals letters and show small letters.
This commit is contained in:
parent
08ab9c576a
commit
77543daf37
@ -151,12 +151,13 @@ const AttendanceOverview = () => {
|
||||
<table className="table table-bordered table-sm text-start align-middle mb-0">
|
||||
<thead className="table-light" style={{ position: "sticky", top: 0, zIndex: 1 }}>
|
||||
<tr>
|
||||
<th style={{ background: "#f8f9fa" }}>Role</th>
|
||||
<th style={{ background: "#f8f9fa", textTransform: "none" }}>Role</th>
|
||||
{dates.map((date, idx) => (
|
||||
<th key={idx} style={{ background: "#f8f9fa" }}>{date}</th>
|
||||
<th key={idx} style={{ background: "#f8f9fa", textTransform: "none" }}>{date}</th>
|
||||
))}
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
{roles.map((role) => (
|
||||
<tr key={role}>
|
||||
|
Loading…
x
Reference in New Issue
Block a user