added icons for dropdown
This commit is contained in:
parent
61542e6d4f
commit
addf44847a
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user