From 508d3af186264c13d805e12f174fdbd2708a9af6 Mon Sep 17 00:00:00 2001 From: jabahum Date: Tue, 26 Sep 2023 08:38:40 +0300 Subject: [PATCH] fix: add tests ordered empty state --- src/queue-list/laboratory-patient-list.component.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/queue-list/laboratory-patient-list.component.tsx b/src/queue-list/laboratory-patient-list.component.tsx index 373b2ea..03289c0 100644 --- a/src/queue-list/laboratory-patient-list.component.tsx +++ b/src/queue-list/laboratory-patient-list.component.tsx @@ -40,6 +40,7 @@ import { import LabTests from "./lab-tests/lab-tests.component"; import AddToWorklist from "./lab-dialogs/add-to-worklist-dialog.component"; import PickLabRequestActionMenu from "./pick-lab-request-menu.component"; +import { EmptyState } from "@openmrs/esm-patient-common-lib"; // type FilterProps = { // rowIds: Array; @@ -258,6 +259,13 @@ const LaboratoryPatientList: React.FC = () => { ); } + + return ( +
+
+ +
+ ); }; export default LaboratoryPatientList;