mirror of
https://github.com/misenhower/splatoon2.ink.git
synced 2026-09-14 13:35:14 -05:00
Fix a mistake
This was unintentionally modifying the source array, causing some of the schedules to disappear for a moment (before "now" was updated at the next second).
This commit is contained in:
@@ -44,7 +44,7 @@ export default {
|
||||
computed: {
|
||||
first() { return this.schedules && this.schedules[0]; },
|
||||
second() { return this.schedules && this.schedules[1]; },
|
||||
others() { return this.schedules && this.schedules.splice(2); },
|
||||
others() { return this.schedules && this.schedules.slice(2); },
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user