In table remove all Capitals letters and show small letters.

This commit is contained in:
Kartik sharma 2025-07-16 17:21:19 +05:30
parent 08ab9c576a
commit 77543daf37

View File

@ -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}>