Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(fix) SJT-134 Fix the filter on the payment history module the date picker is not working #117

Merged
merged 2 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/esm-billing-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ehospital/esm-billing-app",
"version": "1.3.0",
"version": "1.3.1",
"description": "Billing frontend module for use in O3",
"browser": "dist/ehospital-esm-billing-app.js",
"main": "src/index.ts",
Expand Down Expand Up @@ -121,5 +121,5 @@
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"packageManager": "[email protected]",
"gitHead": "309055b8757f9eca2383037d81b0b3a25c8a185d"
"gitHead": "f19e24d58352ac6751152ffcc6639947592d7645"
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import React from 'react';
import { useTranslation } from 'react-i18next';
import styles from './patient-bills-dashboard.scss';
import { EmptySvg } from './empty-svg.component';
import LeftPanel from '../../left-panel/left-panel.component';

type EmptyPatientBillProps = {
title?: string;
subTitle?: string;
};
const EmptyPatientBill: React.FC<EmptyPatientBillProps> = ({ title, subTitle }) => {
const { t } = useTranslation();
return (
<>
<LeftPanel/>
<div className={styles.emptyStateContainer}>
<EmptySvg />
<p className={styles.title}>{title ?? t('searchForAPatient', 'Search for a patient')}</p>
<p className={styles.subTitle}>
{subTitle ?? t('enterAnIdNumberOrPatientName', 'Enter an ID number or patient name')}
</p>
</div>
</>
);
};

export default EmptyPatientBill;
Loading
Loading