Refactor_Directory And Project Level Permsssion #404

Merged
pramod.mahajan merged 90 commits from Refactor_Directory into main 2025-09-17 10:24:46 +00:00
Showing only changes of commit 19241cc556 - Show all commits

View File

@ -103,7 +103,7 @@ const ListViewContact = ({ data, Pagination }) => {
id="horizontal-example"
>
<div className="dataTables_wrapper no-footer ">
<table className="table border-top dataTable text-nowrap">
<table className="table dataTable text-nowrap">
<thead>
<tr className="shadow-sm ">
{contactList?.map((col) => (
@ -164,7 +164,7 @@ const ListViewContact = ({ data, Pagination }) => {
isPending && activeContact === row.id
? "bx-loader-alt bx-spin"
: "bx-recycle"
} me-1 text-primary cursor-pointer`}
} me-1 text-primary cursor-pointer`}
title="Restore"
onClick={() => {
setActiveContact(row.id);
@ -176,19 +176,20 @@ const ListViewContact = ({ data, Pagination }) => {
</tr>
))
) : (
<tr>
<tr style={{ height: "200px" }}>
<td
colSpan={contactList.length + 1}
className="text-center"
className="text-center align-middle"
>
No contacts found
</td>
</tr>
)}
</tbody>
</table>
{Pagination && (
<div className="d-flex justify-content-start p-3">
<div className="d-flex justify-content-start">
{Pagination}
</div>
)}