more
This commit is contained in:
@@ -149,7 +149,6 @@ const DocumentListPage = ({ perPage }) => {
|
|||||||
caseId,
|
caseId,
|
||||||
documentType
|
documentType
|
||||||
) {
|
) {
|
||||||
console.log("documentType in handleNavigate", documentType);
|
|
||||||
const _id = String(documentId);
|
const _id = String(documentId);
|
||||||
const _resGen = String(responseGenerations);
|
const _resGen = String(responseGenerations);
|
||||||
const parentCaseId = String(caseId);
|
const parentCaseId = String(caseId);
|
||||||
@@ -183,7 +182,7 @@ const DocumentListPage = ({ perPage }) => {
|
|||||||
if (!group) {
|
if (!group) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
console.log("allDocs", allDocs);
|
|
||||||
const DesktopContent = () => {
|
const DesktopContent = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|||||||
@@ -281,8 +281,7 @@ export const DocCard = (props) => {
|
|||||||
const now = new Date().getTime();
|
const now = new Date().getTime();
|
||||||
const uploadedAt = new Date(createdAtTime * 1000);
|
const uploadedAt = new Date(createdAtTime * 1000);
|
||||||
const isReportable = Math.round((now - uploadedAt) / 60 / 1000) > 15;
|
const isReportable = Math.round((now - uploadedAt) / 60 / 1000) > 15;
|
||||||
console.log("responseGenerations", responseGenerations);
|
|
||||||
console.log("docType", docType);
|
|
||||||
const disabled = docType ? false : true;
|
const disabled = docType ? false : true;
|
||||||
const tooltipText =
|
const tooltipText =
|
||||||
"Parsing is taking a bit longer than usual. This usually resolves within 15 minutes. If it does not, click “report” and support will address the issue within 24 hours.";
|
"Parsing is taking a bit longer than usual. This usually resolves within 15 minutes. If it does not, click “report” and support will address the issue within 24 hours.";
|
||||||
|
|||||||
Reference in New Issue
Block a user