Skip to content

Commit

Permalink
fix: add tests ordered empty state
Browse files Browse the repository at this point in the history
  • Loading branch information
jabahum committed Oct 2, 2023
1 parent a06ce90 commit 508d3af
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/queue-list/laboratory-patient-list.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<string>;
Expand Down Expand Up @@ -258,6 +259,13 @@ const LaboratoryPatientList: React.FC<LaboratoryPatientListProps> = () => {
</div>
);
}

return (
<div>
<div className={styles.headerBtnContainer}></div>
<EmptyState displayText={"Tests Ordered"} headerTitle={"Tests Ordered"} />
</div>
);
};

export default LaboratoryPatientList;

0 comments on commit 508d3af

Please sign in to comment.