This commit is contained in:
Kenneth Jannette
2024-03-05 15:59:31 -06:00
parent 156a79d56c
commit ece174dbd5
2 changed files with 4 additions and 4 deletions

View File

@@ -292,15 +292,15 @@ export const DocCard = (props) => {
};
const documentTitle =
docType === "interrogatories-out"
? "Outbound discovery reqs"
? "Outbound requests"
: "Discovery responses";
const isOutbound = docType === "interrogatories-out";
const buttonText =
docType === "interrogatories-out"
? "Edit Requests"
? "Edit Request"
: responseGenerations > 0
? "Edit Responses"
? "Edit Response"
: "Generate Response";
return (
<div className="doc-card-container">

View File

@@ -318,5 +318,5 @@
}
.gen-button {
width: 156px !important;
width: 158px !important;
}