Skip to content

Commit

Permalink
Merge pull request #61 from PiusKariuki/chore/remove-underscore-to-st…
Browse files Browse the repository at this point in the history
…atuses-SJT-72

Chore/remove underscore to statusesSJT-72
  • Loading branch information
Michaelndula authored Aug 21, 2024
2 parents 7f48e2f + 8cfd192 commit ce703db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/esm-procedure-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sjthc/esm-procedure-app",
"version": "1.0.8",
"version": "1.0.9",
"license": "MPL-2.0",
"description": "An OpenMRS seed application for building microfrontends",
"browser": "dist/sjthc-esm-procedure-app.js",
Expand Down Expand Up @@ -113,5 +113,5 @@
"webpack-cli": "^5.1.4"
},
"packageManager": "[email protected]",
"gitHead": "9d22abb5d19ef1bbe2be2a76e3ce1e72f3d4aed2"
"gitHead": "804db3d0620a3ab202a82f9775d991614561b962"
}
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const ListOrderDetails: React.FC<ListOrdersDetailsProps> = (props) => {
{props.showStatus && (
<OrderDetail
label={t("status", "Status").toUpperCase()}
value={row.status}
value={row.status.replace(/_/g, " ")}
/>
)}
<OrderDetail
Expand Down

0 comments on commit ce703db

Please sign in to comment.