Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
Fixed the Bug that multiple observation events were automatically sel…
Browse files Browse the repository at this point in the history
…ected when a study started and ended on the same day of the week (Monday, Tuesday, ...)
  • Loading branch information
AdPat-Redlink committed Feb 23, 2024
1 parent 87703df commit c15f410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/shared/Scheduler.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Licensed under the Elastic License 2.0. */
}
const singleDayEventCheckbox: Ref<boolean> = ref(
calendarStart.value.getDay() === calendarEnd.value.getDay() ? true : false
calendarStart.value.getTime() === calendarEnd.value.getTime()
); // Individual Observation Checkbox
const hasRruleValue: Ref<boolean> = ref(
!returnSchedule.value.rrule ? false : true
Expand Down

0 comments on commit c15f410

Please sign in to comment.