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