Skip to content

Commit

Permalink
Merge pull request #94 from Samstar10/fix/billing-history-table-ui
Browse files Browse the repository at this point in the history
SJT-109 Fix billing history table UI
  • Loading branch information
Michaelndula authored Dec 4, 2024
2 parents c350be4 + 8bfcafb commit 150173e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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.0.9",
"version": "1.1.0",
"description": "Billing frontend module for use in O3",
"browser": "dist/ehospital-esm-billing-app.js",
"main": "src/index.ts",
Expand Down Expand Up @@ -120,5 +120,5 @@
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"packageManager": "[email protected]",
"gitHead": "7ccfa2e32cc7a985ad7e809fe6cbbf395a340311"
"gitHead": "b5e50a7d0160032b1d3f20dec5d5eaf83717fafc"
}
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const BillHistory: React.FC<BillHistoryProps> = ({ patientUuid }) => {
}

return (
<>
<div>
<CardHeader title={t('billingHistory', 'Billing History')}>
<Button renderIcon={Add} onClick={() => launchPatientWorkspace('billing-form-workspace', {})} kind="ghost">
{t('addBill', 'Add bill item(s)')}
Expand Down Expand Up @@ -199,7 +199,7 @@ const BillHistory: React.FC<BillHistoryProps> = ({ patientUuid }) => {
/>
)}
</div>
</>
</div>
);
};

Expand Down

0 comments on commit 150173e

Please sign in to comment.