Skip to content

Commit

Permalink
Adjust the table cells height
Browse files Browse the repository at this point in the history
Adjust the table cells height
  • Loading branch information
Michaelndula authored Apr 12, 2024
2 parents 596cbd5 + 942df53 commit fb0f509
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/esm-patient-list-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sjthc/esm-patient-list-app",
"version": "1.0.5",
"version": "1.0.7",
"license": "MPL-2.0",
"description": "Custom Patient list microfrontend for the OpenMRS SPA",
"browser": "dist/sjthc-esm-patient-list-app",
Expand Down
3 changes: 1 addition & 2 deletions packages/esm-patient-list-app/src/hooks/usePatientList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export function usePatientList() {
new Date(item.resource.meta.lastUpdated) <= new Date(end)
);


filteredArray = filteredArray.map((item: any) => ({
fullName:
item?.resource?.name[0]?.given[0] + item.resource?.name[0]?.family,
Expand Down Expand Up @@ -85,7 +84,7 @@ export function usePatientList() {
const customStyles = {
cells: {
style: {
minHeight: "72px",
minHeight: "22px",
fontSize: "14px",
fontWeight: "500",
},
Expand Down

0 comments on commit fb0f509

Please sign in to comment.