Merge pull request #19 from kjannette/gem

Gem
This commit is contained in:
S Jannette
2024-01-13 22:05:20 -06:00
committed by GitHub
3 changed files with 10 additions and 3 deletions

View File

@@ -22,8 +22,11 @@ export const Steps = () => (
i.e. Defendants Interrogatories, and (optionally) the date served.
Drag and drop or click to select the request document from your files.{" "}
<em>The document must be in .pdf format.</em>
<br /> Click Upload, and will you automatically navigate to the{" "}
<strong>Document List View</strong>. <br />{" "}
<br />{" "}
<p className="howto-special-para">
Click Upload, and will you automatically navigate to the{" "}
<strong>Document List View</strong>.
</p>{" "}
</li>
<li>
Click the Generate Responses'' button. Novdrafts Intellidraft AI will

View File

@@ -279,7 +279,7 @@ export const DocCard = (props) => {
console.log("report documentId, docType", documentId, docType);
};
const tooltipText =
"Parsing is taking longer than usual. Reasons may include high traffic, maintenance, or transitory system lag. Usually this will resolve in 10 minutes. If not, click “report”, and it will be fixed in 24 hours.";
"Parsing is taking longer than usual. Reasons may include a corrupt upload file, or high network traffic. This will usually resolve in 15 minutes. If not, click “report” and support will address the issue within 24 hours.";
const disabled = docType ? false : true;
return (
<div className="doc-card-container">

View File

@@ -81,5 +81,9 @@
margin-bottom: 14px;
padding: 0px 14px;
}
.howto-special-para {
margin-top: 6px;
}
}
}