Skip to content

Commit

Permalink
UI enhancement to Sample Test History (ohcnetwork#9193)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keerthilochankumar authored and UdaySagar-Git committed Dec 3, 2024
1 parent fb2bbc3 commit 93e0ed2
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 93e0ed2

Please sign in to comment.