Skip to content

Commit

Permalink
Merge branch 'develop' into issues/8645/dosage-heading-misaligned
Browse files Browse the repository at this point in the history
  • Loading branch information
Sulochan-khadka authored Nov 2, 2024
2 parents fd45d72 + 3757705 commit eb928ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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

0 comments on commit eb928ea

Please sign in to comment.