We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bebaf25 commit 7d01f02Copy full SHA for 7d01f02
paper-calendar.html
@@ -666,9 +666,9 @@
666
}
667
if (!this._withinValidRange(date)) {
668
console.warn('Date outside of valid range: ' + date);
669
- if (date.getFullYear() == this.maxDate.getFullYear()) {
+ if (this.maxDate && date.getFullYear() == this.maxDate.getFullYear()) {
670
this.date = this.maxDate;
671
- } else if (date.getFullYear() == this.minDate.getFullYear()) {
+ } else if (this.minDate && date.getFullYear() == this.minDate.getFullYear()) {
672
this.date = this.minDate;
673
} else {
674
this.date = date = oldValue;
0 commit comments