mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 11:27:09 +00:00
Fix reversed actions in calendar
This commit is contained in:
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user