changed table column email to role

This commit is contained in:
Pramod Mahajan 2025-05-29 19:59:24 +05:30
parent 114aac089b
commit 3ed2048e45

View File

@ -96,7 +96,7 @@ const EmployeeList = ({ employees, onChange, bucket }) => {
>
<span className="ps-2">Name {getSortIcon()}</span>
</th>
<th className="text-start">Email</th>
<th className="text-start">Role</th>
</tr>
</thead>
@ -143,7 +143,7 @@ const EmployeeList = ({ employees, onChange, bucket }) => {
</div>
</td>
<td className="text-start">
<small className="text-muted">{employee.email}</small>
<small className="text-muted">{employee.jobRole}</small>
</td>
</tr>
))