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

Fixed the Bug that multiple observation events were automatically sel… #5

Open
wants to merge 1 commit into
base: Feature_MORE2-1_dynamic-study-start
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading