Skip to content

Commit

Permalink
UI enhancement to Sample Test History (#9193)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keerthilochankumar authored Nov 26, 2024
1 parent b2a1448 commit 9fb8ec1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Patient/SampleDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,11 @@ export const SampleDetails = ({ id }: DetailRoute) => {
<div className="mb-4">
<h4 className="mt-8">{t("sample_test_history")}</h4>
{sampleDetails?.flow &&
sampleDetails.flow.map((flow: FlowModel) => renderFlow(flow))}
sampleDetails.flow.map((flow: FlowModel) => (
<div key={flow.id} className="mb-2">
{renderFlow(flow)}
</div>
))}
</div>

<FileUpload
Expand Down

0 comments on commit 9fb8ec1

Please sign in to comment.