more
This commit is contained in:
@@ -143,18 +143,13 @@ const DocumentListPage = ({ perPage }) => {
|
|||||||
{ label: "Associated case name z - a", value: "parentCaseName2" },
|
{ label: "Associated case name z - a", value: "parentCaseName2" },
|
||||||
];
|
];
|
||||||
|
|
||||||
function handleNavigate(
|
function handleNavigate(documentId, caseId, documentType) {
|
||||||
documentId,
|
|
||||||
responseGenerations,
|
|
||||||
caseId,
|
|
||||||
documentType
|
|
||||||
) {
|
|
||||||
const docId = String(documentId);
|
const docId = String(documentId);
|
||||||
const _resGen = String(responseGenerations);
|
|
||||||
const _docType = String(documentType);
|
|
||||||
if (documentType === "interrogatories-out") {
|
if (documentType === "interrogatories-out") {
|
||||||
|
//may include other in future ie req for admission
|
||||||
navigate(`/reqedit/${docId}/interrogatories-out/${caseId}`);
|
navigate(`/reqedit/${docId}/interrogatories-out/${caseId}`);
|
||||||
} else {
|
} else {
|
||||||
|
console.log("----------------------> handeNave else");
|
||||||
navigate(`/docedit/${docId}/${caseId}`);
|
navigate(`/docedit/${docId}/${caseId}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ export const docEditCopy = {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="prelim-statement-container">
|
<div className="prelim-statement-container">
|
||||||
<p>{copyString}</p>
|
<p className="docedit-prelim-text">{copyString}</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -460,3 +460,7 @@
|
|||||||
.prelim-statement-container {
|
.prelim-statement-container {
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.docedit-prelim-text {
|
||||||
|
line-height: 2;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user