Skip to content

Commit

Permalink
Merge branch 'develop' into remove-clickElementById/ohcnetwork#8929
Browse files Browse the repository at this point in the history
  • Loading branch information
AnveshNalimela committed Nov 2, 2024
2 parents 5ac2a1c + 764cfe3 commit 8f98d25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Facility/ConsultationDoctorNotes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const ConsultationDoctorNotes = (props: ConsultationDoctorNotesProps) => {
backUrl={`/facility/${facilityId}/patient/${patientId}`}
>
<div className="relative mx-3 my-2 flex grow flex-col overflow-hidden rounded-lg border border-secondary-300 bg-white p-2 sm:mx-10 sm:my-5 sm:p-5">
<div className="absolute inset-x-0 top-0 flex bg-secondary-200 text-sm shadow-md">
<div className="absolute inset-x-0 top-0 z-10 flex bg-secondary-200 text-sm shadow-md">
{keysOf(PATIENT_NOTES_THREADS).map((current) => (
<button
id={`patient-note-tab-${current}`}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Patient/PatientNotes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const PatientNotes = (props: PatientNotesProps) => {
backUrl={`/facility/${facilityId}/patient/${patientId}`}
>
<div className="relative mx-3 my-2 flex grow flex-col rounded-lg border border-secondary-300 bg-white p-2 sm:mx-10 sm:my-5 sm:p-5">
<div className="absolute inset-x-0 top-0 flex bg-secondary-200 text-sm shadow-md">
<div className="absolute inset-x-0 top-0 z-10 flex bg-secondary-200 text-sm shadow-md">
{keysOf(PATIENT_NOTES_THREADS).map((current) => (
<button
id={`patient-note-tab-${current}`}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Shifting/ShiftDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default function ShiftDetails(props: { id: string }) {
"\n" +
t("age") +
":" +
+(data?.patient_object
(data?.patient_object
? formatPatientAge(data.patient_object, true)
: "") +
"\n" +
Expand Down

0 comments on commit 8f98d25

Please sign in to comment.