fixed a missed emit

pull/2708/head
James Laidlaw 2022-06-22 09:32:22 -06:00 committed by GitHub
parent d09ecc6765
commit 3f5262ba82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -689,7 +689,7 @@ export default {
this.currentMonth++; this.currentMonth++;
} }
this.$emit('month-change', {month: this.currentMonth , year: this.currentYear}); this.$emit('month-change', {month: this.currentMonth + 1, year: this.currentYear});
} }
}, },
decrementYear() { decrementYear() {