diff --git a/src/Components/Facility/PatientNoteCard.tsx b/src/Components/Facility/PatientNoteCard.tsx index 9ddfbc009e..80443ad02a 100644 --- a/src/Components/Facility/PatientNoteCard.tsx +++ b/src/Components/Facility/PatientNoteCard.tsx @@ -135,21 +135,32 @@ const PatientNoteCard = ({ note.created_by_object.id === authUser.id && !isEditing && ( { setIsEditing(true); }} > + + {t("edit")} + )} { setReplyTo && setReplyTo(note); }} > - + + + {t("reply")} + diff --git a/src/Components/Facility/PatientNotesSlideover.tsx b/src/Components/Facility/PatientNotesSlideover.tsx index 52f99aee76..fe716950aa 100644 --- a/src/Components/Facility/PatientNotesSlideover.tsx +++ b/src/Components/Facility/PatientNotesSlideover.tsx @@ -137,36 +137,45 @@ export default function PatientNotesSlideover(props: PatientNotesProps) {
{show && ( + + {t("full_screen")} + )}
setShow(!show)} > + + {t("minimize")} +
setShowPatientNotesPopup(false)} > + + {t("close")} +
); @@ -248,13 +257,16 @@ export default function PatientNotesSlideover(props: PatientNotesProps) { id="add_doctor_note_button" onClick={onAddNote} border={false} - className="absolute right-2" + className="tooltip absolute right-2" ghost size="small" disabled={!patientActive} authorizeFor={NonReadOnlyUsers} > - + + + {t("send")} + diff --git a/src/Locale/en.json b/src/Locale/en.json index ceb022d1f0..d21c112179 100644 --- a/src/Locale/en.json +++ b/src/Locale/en.json @@ -1052,9 +1052,12 @@ "patient_details": "Patient Details", "width": "Width ({{unit}})", "length": "Length ({{unit}})", + "minimize": "Minimize", + "send": "Send", + "reply": "Reply", "years": "years", "investigation_report": "Investigation Report", "expand_sidebar": "Expand Sidebar", "collapse_sidebar": "Collapse Sidebar", "linked_skills": "Linked Skills" -} \ No newline at end of file +}