@@ -191,22 +191,8 @@ const DocumentListPage = ({ perPage }) => {
|
||||
{allDocs.length > 0 ? (
|
||||
<div className="document-list-upper-wrapper">
|
||||
<div className="list-upper-left">
|
||||
<div className="toggle-outer">
|
||||
<div className="toggle-header">
|
||||
{" "}
|
||||
<p
|
||||
onClick={handleNovos}
|
||||
href=""
|
||||
className="doclist-toggle-link"
|
||||
>
|
||||
Novos
|
||||
</p>
|
||||
</div>
|
||||
<div className="toggle-box">
|
||||
<p className="select-billing-text">Min</p>
|
||||
<Toggle value={verbValue} onClick={handleToggle} />
|
||||
<p className="select-billing-text">Max</p>
|
||||
</div>
|
||||
<div className="doc-list-subhead-container">
|
||||
<div className="doc-list-subhead">Discovery Requests</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="list-upper-right">
|
||||
@@ -303,3 +289,23 @@ const DocumentListPage = ({ perPage }) => {
|
||||
};
|
||||
|
||||
export default DocumentListPage;
|
||||
|
||||
/*
|
||||
<div className="toggle-outer">
|
||||
<div className="toggle-header">
|
||||
{" "}
|
||||
<p
|
||||
onClick={handleNovos}
|
||||
href=""
|
||||
className="doclist-toggle-link"
|
||||
>
|
||||
Novos
|
||||
</p>
|
||||
</div>
|
||||
<div className="toggle-box">
|
||||
<p className="select-billing-text">Min</p>
|
||||
<Toggle value={verbValue} onClick={handleToggle} />
|
||||
<p className="select-billing-text">Max</p>
|
||||
</div>
|
||||
</div>
|
||||
*/
|
||||
|
||||
@@ -78,7 +78,7 @@ const UploadModal = (props) => {
|
||||
parentCaseName: `${caption} v. ${captionTwo}`,
|
||||
parentCaseNumber: caseNumber,
|
||||
parentCaseJurisdiction: jurisdiction,
|
||||
responseGenerations: 0,
|
||||
responseGenerations: 1,
|
||||
};
|
||||
|
||||
if (radioValue === "complaint") {
|
||||
|
||||
@@ -290,10 +290,9 @@ export const DocCard = (props) => {
|
||||
const report = (documentId, docType) => {
|
||||
//console.log("report documentId, docType", documentId, docType);
|
||||
};
|
||||
console.log(
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>________------------------------------------__>docType",
|
||||
docType
|
||||
);
|
||||
|
||||
const isOutbound =
|
||||
responseGenerations > 0 && docType === "interrogatories-out";
|
||||
return (
|
||||
<div className="doc-card-container">
|
||||
<div className="doc-card-input">
|
||||
@@ -356,7 +355,11 @@ export const DocCard = (props) => {
|
||||
)
|
||||
}
|
||||
labelText={
|
||||
responseGenerations > 0 ? "Edit Response" : "Generate Response"
|
||||
isOutbound
|
||||
? "Edit Request"
|
||||
: responseGenerations > 0
|
||||
? "Edit Response"
|
||||
: "Generate Response"
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -61,10 +61,26 @@
|
||||
.list-upper-left {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-end;
|
||||
justify-content: left;
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
.doc-list-subhead-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-left: 12px;
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
padding-bottom: 12px;
|
||||
}
|
||||
|
||||
.doc-list-subhead {
|
||||
font-family: Roboto;
|
||||
font-size: 1.18rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.toggle-outer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
Reference in New Issue
Block a user