pramod_Task-#399 : Added Access Permission For 'Directory User' Role #160

Merged
pramod.mahajan merged 19 commits from pramod_Task-#399 into Feature_Directory 2025-05-29 17:49:56 +00:00
Showing only changes of commit 3ed2048e45 - Show all commits

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>
))