We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be4bf2 commit 654e5c3Copy full SHA for 654e5c3
src/js/rangedate-picker.js
@@ -190,11 +190,11 @@ export default {
190
if (this.isCompact) {
191
this.isOpen = true
192
}
193
- if (this.activeMonthStart === 11) this.activeYearEnd += 1
+ if (this.activeMonthStart === 11) this.activeYearEnd = this.activeYearStart + 1
194
},
195
watch: {
196
startNextActiveMonth: function (value) {
197
- if (value === 0) this.activeYearEnd += 1
+ if (value === 0) this.activeYearEnd = this.activeYearStart + 1
198
199
200
computed: {
0 commit comments