Pramod_Bug#80 #38

Merged
vikas.nale merged 5 commits from Pramod_Bug#80 into Issues_April_4W 2025-04-20 08:32:15 +00:00
Showing only changes of commit addf44847a - Show all commits

View File

@ -458,30 +458,30 @@ const EmployeeList = () => {
onClick={() =>
navigate(`/employee/${item.id}`)
}
className="dropdown-item"
className="dropdown-item py-1"
>
View
<i className="bx bx-detail bx-sm"></i> View
</button>
<Link
to={`/employee/manage/${item.id}`}
className="dropdown-item"
className="dropdown-item py-1"
>
Edit
<i class='bx bx-edit bx-sm'></i> Edit
</Link>
<button
className="dropdown-item"
className="dropdown-item py-1"
onClick={handleShow}
>
Suspend
<i class='bx bx-task-x bx-sm'></i> Suspend
</button>
<button
className="dropdown-item"
className="dropdown-item py-1"
type="button"
data-bs-toggle="modal"
data-bs-target="#managerole-modal"
onClick={() => handleConfigData(item.id)}
>
Manage Role
<i class='bx bx-cog bx-sm'></i> Manage Role
</button>
</div>
</div>