Skip to content

Commit 7d01f02

Browse files
Brendon Pageadmwx7
Brendon Page
authored andcommitted
Added checks for min and max date before trying to set the date to one of them in the cause of the date being outside the valid range
1 parent bebaf25 commit 7d01f02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

paper-calendar.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -666,9 +666,9 @@
666666
}
667667
if (!this._withinValidRange(date)) {
668668
console.warn('Date outside of valid range: ' + date);
669-
if (date.getFullYear() == this.maxDate.getFullYear()) {
669+
if (this.maxDate && date.getFullYear() == this.maxDate.getFullYear()) {
670670
this.date = this.maxDate;
671-
} else if (date.getFullYear() == this.minDate.getFullYear()) {
671+
} else if (this.minDate && date.getFullYear() == this.minDate.getFullYear()) {
672672
this.date = this.minDate;
673673
} else {
674674
this.date = date = oldValue;

0 commit comments

Comments
 (0)