Fix reversed actions in calendar

This commit is contained in:
D. Berge
2020-09-10 02:19:46 +02:00
parent 5fdd84fadf
commit 08656a0b5e

View File

@@ -150,11 +150,11 @@ export default {
},
setFirst () {
this.focus = this.events[0].start;
this.focus = this.events[this.events.length-1].start;
},
setLast () {
this.focus = this.events[this.events.length-1].start;
this.focus = this.events[0].start;
},
prev () {