diff --git a/src/Components/Document/DocumentListPage.js b/src/Components/Document/DocumentListPage.js index 6ac0fcb..f174f5c 100644 --- a/src/Components/Document/DocumentListPage.js +++ b/src/Components/Document/DocumentListPage.js @@ -143,18 +143,13 @@ const DocumentListPage = ({ perPage }) => { { label: "Associated case name z - a", value: "parentCaseName2" }, ]; - function handleNavigate( - documentId, - responseGenerations, - caseId, - documentType - ) { + function handleNavigate(documentId, caseId, documentType) { const docId = String(documentId); - const _resGen = String(responseGenerations); - const _docType = String(documentType); if (documentType === "interrogatories-out") { + //may include other in future ie req for admission navigate(`/reqedit/${docId}/interrogatories-out/${caseId}`); } else { + console.log("----------------------> handeNave else"); navigate(`/docedit/${docId}/${caseId}`); } } diff --git a/src/Constants/Copy/docEditCopy.js b/src/Constants/Copy/docEditCopy.js index e8b540e..8861ccf 100644 --- a/src/Constants/Copy/docEditCopy.js +++ b/src/Constants/Copy/docEditCopy.js @@ -23,7 +23,7 @@ export const docEditCopy = { return (
-

{copyString}

+

{copyString}

); }, diff --git a/src/styles/docedit-page.scss b/src/styles/docedit-page.scss index 157351e..f3f681f 100644 --- a/src/styles/docedit-page.scss +++ b/src/styles/docedit-page.scss @@ -460,3 +460,7 @@ .prelim-statement-container { margin-bottom: 8px; } + +.docedit-prelim-text { + line-height: 2; +}