Skip to content

Commit

Permalink
bug/CE-484 - add missing label (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
marqueone-ps authored Feb 13, 2024
1 parent a7eab9c commit 378c976
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const AddAnimalOutcome: FC<props> = ({ animalCount, agency, species, assi
drugs: [],
outcome: "",
officer: "",
isEditable: false
isEditable: false,
});

useEffect(() => {
Expand Down Expand Up @@ -226,6 +226,8 @@ export const AddAnimalOutcome: FC<props> = ({ animalCount, agency, species, assi

return (
<>
<div className="comp-outcome-report-container">Drug{drugs.length >1 && "s"}</div>

{from(drugs)
.orderBy((item) => item.id)
.toArray()
Expand Down

0 comments on commit 378c976

Please sign in to comment.