Skip to content

Commit 307a725

Browse files
committed
Solved the problem connected with date range
1 parent a65a54e commit 307a725

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/FunctionalCalendar.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -711,10 +711,10 @@
711711
return classes;
712712
},
713713
checkDateRangeStart(date) {
714-
return date === this.calendar.dateRange.start || date === this.fConfigs.markedDateRange.start;
714+
return date === date === this.fConfigs.markedDateRange.start;
715715
},
716716
checkDateRangeEnd(date) {
717-
return date === this.calendar.dateRange.end || date === this.fConfigs.markedDateRange.end;
717+
return date === date === this.fConfigs.markedDateRange.end;
718718
},
719719
getTransition_() {
720720
if (!this.fConfigs.transition)

0 commit comments

Comments
 (0)