parent
7f429b7b74
commit
c5842a2153
|
@ -674,7 +674,11 @@ export default {
|
||||||
if (this.isComparable()) {
|
if (this.isComparable()) {
|
||||||
let value = this.isRangeSelection() ? this.modelValue[0] : this.modelValue;
|
let value = this.isRangeSelection() ? this.modelValue[0] : this.modelValue;
|
||||||
|
|
||||||
return !this.isMultipleSelection() ? value.getMonth() === month && value.getFullYear() === this.currentYear : false;
|
if (this.isMultipleSelection()) {
|
||||||
|
return value.some((currentValue) => currentValue.getMonth() === month && currentValue.getFullYear() === currentYear);
|
||||||
|
} else {
|
||||||
|
return value.getMonth() === month && value.getFullYear() === currentYear;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -683,7 +687,11 @@ export default {
|
||||||
if (this.isComparable()) {
|
if (this.isComparable()) {
|
||||||
let value = this.isRangeSelection() ? this.modelValue[0] : this.modelValue;
|
let value = this.isRangeSelection() ? this.modelValue[0] : this.modelValue;
|
||||||
|
|
||||||
return !this.isMultipleSelection() && this.isComparable() ? value.getFullYear() === year : false;
|
if (this.isMultipleSelection()) {
|
||||||
|
return value.some((currentValue) => currentValue.getFullYear() === year);
|
||||||
|
} else {
|
||||||
|
return value.getFullYear() === year;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue