Merge branch 'Purchase_Invoice_Management' of https://git.marcoaiot.com/admin/marco.pms.web into Purchase_Invoice_Management
This commit is contained in:
commit
48f8d4aedb
@ -99,7 +99,7 @@ const ListViewContact = ({ data, Pagination }) => {
|
||||
/>
|
||||
<div className="card ">
|
||||
<div
|
||||
className="card-datatable table-responsive"
|
||||
className="card-datatable table-responsive page-min-h"
|
||||
id="horizontal-example"
|
||||
>
|
||||
<div className="dataTables_wrapper no-footer mx-5 pb-2">
|
||||
@ -121,7 +121,7 @@ const ListViewContact = ({ data, Pagination }) => {
|
||||
data.map((row, i) => (
|
||||
<tr
|
||||
key={i}
|
||||
style={{ background: `${!showActive ? "#f8f6f6" : ""}` }}
|
||||
style={{height: "50px", background: `${!showActive ? "#f8f6f6" : ""}` }}
|
||||
>
|
||||
{contactList.map((col) => (
|
||||
<td key={col.key} className={col.align}>
|
||||
|
||||
@ -197,7 +197,7 @@ const DocumentsList = ({
|
||||
const isRestoring = restoringIds.includes(doc.id);
|
||||
|
||||
return (
|
||||
<tr key={doc.id}>
|
||||
<tr key={doc.id} style={{ height: "50px" }}>
|
||||
{DocumentColumns.map((col) => (
|
||||
<td key={col.key} className={`sorting ${col.align}`}>
|
||||
{col.customRender
|
||||
|
||||
@ -103,7 +103,7 @@ const ProjectAssignedOrgs = () => {
|
||||
<tbody>
|
||||
{Array.isArray(data) && data.length > 0 ? (
|
||||
data.map((row, i) => (
|
||||
<tr key={i}>
|
||||
<tr key={i} style={{ height: "50px" }}>
|
||||
{orgList.map((col) => (
|
||||
<td key={col.key} className={col.align}>
|
||||
{col.getValue(row)}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user