-
Notifications
You must be signed in to change notification settings - Fork 498
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
Noufalrahim/feat/added units to pressure sore #8715
Noufalrahim/feat/added units to pressure sore #8715
Conversation
✅ Deploy Preview for care-ohc ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
src/Locale/en/Consultation.json
Outdated
"width_label__cm": "Width (cm)", | ||
"length_label__cm": "Length (cm)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"width_label__cm": "Width (cm)", | |
"length_label__cm": "Length (cm)" | |
"width": "Width ({{ unit }})", | |
"length": "Length ({{ unit }})" |
@@ -129,7 +132,7 @@ const RegionEditor = (props: RegionEditorProps) => { | |||
<br /> | |||
<div className="grid grid-cols-2 gap-2"> | |||
<TextFormField | |||
label="Width" | |||
label={t("width_label__cm")} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
label={t("width_label__cm")} | |
label={t("width", { unit: "cm" })} |
@@ -141,7 +144,7 @@ const RegionEditor = (props: RegionEditorProps) => { | |||
onChange={(e) => update({ width: parseFloat(e.value) })} | |||
/> | |||
<TextFormField | |||
label="Length" | |||
label={t("length_label__cm")} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
label={t("length_label__cm")} | |
label={t("length", { unit: "cm" })} |
…://github.com/noufalrahim/care_fe into noufalrahim/feat/added-units-to-pressure-sore
@noufalrahim please add human firendly title and description for the PR. We also expect you to complete the #Merge Checklist |
👋 Hi, @noufalrahim, This message is automatically generated by prince-chrismc/label-merge-conflicts-action so don't hesitate to report issues/improvements there. |
@noufalrahim can you push the changes requested by @bodhish |
Proposed Changes
@ohcnetwork/care-fe-code-reviewers
Merge Checklist