Skip to content

Commit

Permalink
Rendered Save and Clear Buttons in the Batch Order Entry Patient's se…
Browse files Browse the repository at this point in the history
…ction
  • Loading branch information
IamLRBA committed Jan 24, 2025
1 parent 2e269e6 commit 4b52f90
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/addOrder/PatientInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const PatientInfo = (props) => {
<Column lg={16} md={8} sm={4}>
{newPatientTab.active && (
<CreatePatientForm
showActionsButton={false}
showActionsButton={true}
selectedPatient={selectedPatient}
orderFormValues={orderFormValues}
setOrderFormValues={setOrderFormValues}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,7 @@ function ConfigMenuDisplay(props) {
<TableBody>
<>
{rows.map((row) => (
<TableRow
key={row.id}
>
<TableRow key={row.id}>
{row.cells.map((cell) =>
renderCell(cell, row),
)}
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/index.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
"Helvetica Neue", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
Expand Down

0 comments on commit 4b52f90

Please sign in to comment.