Skip to content

Commit

Permalink
No Information if list is empty. ohcnetwork#7501
Browse files Browse the repository at this point in the history
  • Loading branch information
Sulochan-khadka committed Mar 31, 2024
1 parent 6f882a3 commit ce9de26
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Components/Patient/PatientHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1368,6 +1368,9 @@ export const PatientHome = (props: any) => {
<PaginatedList.WhenLoading>
<CircularProgress />
</PaginatedList.WhenLoading>
<PaginatedList.WhenEmpty className="py-2">
<p>No consultation History</p>
</PaginatedList.WhenEmpty>
<PaginatedList.Items<ConsultationModel>>
{(item) => (
<ConsultationCard
Expand Down Expand Up @@ -1400,6 +1403,9 @@ export const PatientHome = (props: any) => {
<PaginatedList.WhenLoading>
<CircularProgress />
</PaginatedList.WhenLoading>
<PaginatedList.WhenEmpty className="py-2">
<p>No Sample Test History</p>
</PaginatedList.WhenEmpty>
<PaginatedList.Items<SampleTestModel>>
{(item) => (
<SampleTestCard
Expand Down

0 comments on commit ce9de26

Please sign in to comment.