more
This commit is contained in:
@@ -171,7 +171,7 @@ const DocumentListPage = ({ perPage }) => {
|
|||||||
if (!group) {
|
if (!group) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
console.log("allDocs", allDocs);
|
||||||
const DesktopContent = () => {
|
const DesktopContent = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@@ -201,17 +201,17 @@ const DocumentListPage = ({ perPage }) => {
|
|||||||
<DocCard
|
<DocCard
|
||||||
key={`doccard-${i}`}
|
key={`doccard-${i}`}
|
||||||
title={doc.docTitle}
|
title={doc.docTitle}
|
||||||
parentCaseNumber={doc.parentCaseNumber}
|
parentCaseNumber={doc?.parentCaseNumber}
|
||||||
parentCaseName={doc.parentCaseName}
|
parentCaseName={doc?.parentCaseName}
|
||||||
parentCaseId={doc.parentCaseId}
|
parentCaseId={doc?.parentCaseId}
|
||||||
createdAt={doc.createdAt}
|
createdAt={doc?.createdAt}
|
||||||
docType={doc.docType}
|
docType={doc?.docType}
|
||||||
documentId={doc.documentId}
|
documentId={doc?.documentId}
|
||||||
dateServed={doc.dateServed}
|
dateServed={doc?.dateServed}
|
||||||
confirmDelete={confirmDelete}
|
confirmDelete={confirmDelete}
|
||||||
handleNavigate={handleNavigate}
|
handleNavigate={handleNavigate}
|
||||||
displayDeleteButton={true}
|
displayDeleteButton={true}
|
||||||
responseGenerations={doc.responseGenerations}
|
responseGenerations={doc?.responseGenerations}
|
||||||
/>
|
/>
|
||||||
))
|
))
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
Reference in New Issue
Block a user