Skip to content

Commit

Permalink
O3-4043: Dispensing: Allow back dating dispense events for retrospect…
Browse files Browse the repository at this point in the history
…ive entryconst {container }

(remove start-of-day)
  • Loading branch information
mogoodrich committed Oct 3, 2024
1 parent 70eaa35 commit ae0050d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/forms/medication-dispense-review.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ const MedicationDispenseReview: React.FC<MedicationDispenseReviewProps> = ({
: selectedDate.toString(), // to preserve any time component, only update if the day actually changes
});
}}
value={dayjs(medicationDispense.whenHandedOver).startOf('day').toDate()}></OpenmrsDatePicker>
value={dayjs(medicationDispense.whenHandedOver).toDate()}></OpenmrsDatePicker>

{providers && (
<ComboBox
Expand Down

0 comments on commit ae0050d

Please sign in to comment.